@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --proa-blue: #1a3a4a;
    --proa-blue-light: #2d5a6e;
    --proa-orange: #e8731a;
    --proa-bg: #f8f8f8;
    --proa-card-bg: #ffffff;
    --proa-text: #1a1a1a;
    --proa-text-muted: #6b7280;
    --proa-border: #e5e5e5;
    --proa-input-bg: #f8f8f8;
    --proa-success: #22c55e;
    --proa-orange-light: #fed7aa;
}

.proa-directory {
    max-width: 1120px;
    margin: 0 auto;
    padding: 8px 20px 48px;
    font-family: 'DM Sans', sans-serif;
    background: #ffffff;
}

.proa-directory-header {
    text-align: center;
    margin-bottom: 24px;
}

.proa-directory-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--proa-text);
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.proa-directory-header p {
    font-size: 16px;
    color: var(--proa-text-muted);
    margin: 0;
}

.proa-directory-filters {
    background: #dfdfdf;
    border-radius: 28px;
    padding: 22px 30px 26px;
    margin-bottom: 68px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr) 248px;
    gap: 20px 28px;
    align-items: end;
}

.proa-directory-filter-field {
    min-width: 0;
}

.proa-directory-filter-label {
    display: inline-block;
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    color: #2a2a2a;
}

.proa-directory-filter-action {
    align-self: end;
}

.proa-search-wrapper {
    position: relative;
}

.proa-search-wrapper svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #121212;
    pointer-events: none;
}

.proa-directory-filters .proa-input {
    width: 100%;
    min-height: 50px;
    padding: 12px 18px 12px 42px;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    background: #ffffff;
    color: #222222;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.proa-directory-filters .proa-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 115, 26, 0.18);
}

.proa-directory-filters .proa-input::placeholder {
    color: #6f6f6f;
}

.proa-directory .proa-select {
    width: 100%;
    min-height: 50px;
    padding: 12px 46px 12px 18px;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    background-color: #ffffff;
    color: #222222;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231f1f1f' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='7 10 12 15 17 10'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.proa-directory .proa-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 115, 26, 0.18);
}

.proa-btn-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 14px 26px;
    background: #f79036;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 14px 24px rgba(247, 144, 54, 0.18);
}

.proa-btn-filter:hover {
    background: #eb8224;
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(247, 144, 54, 0.24);
}

.proa-btn-filter:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(247, 144, 54, 0.22);
}

.proa-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px 28px;
}

.proa-member-card {
    background: var(--proa-card-bg);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.proa-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.proa-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--proa-orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proa-member-card:hover::before {
    opacity: 1;
}

.proa-member-photo {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--proa-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: var(--proa-bg);
}

.proa-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proa-member-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.proa-member-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--proa-text);
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.proa-member-empresa {
    font-size: 14px;
    font-weight: 600;
    color: var(--proa-blue);
    margin: 0 0 2px 0;
}

.proa-member-cargo {
    font-size: 13px;
    color: var(--proa-text-muted);
    margin: 0 0 10px 0;
}

.proa-badge-facilitador {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--proa-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    width: fit-content;
}

.proa-member-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.proa-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--proa-border);
    background: var(--proa-card-bg);
    color: var(--proa-text-muted);
    text-decoration: none;
    transition: all 0.25s ease;
}

.proa-action-btn:hover {
    background: var(--proa-blue);
    border-color: var(--proa-blue);
    color: #fff;
    transform: scale(1.1);
}

.proa-action-btn svg {
    width: 16px;
    height: 16px;
}

.proa-member-card-vertical {
    background: transparent;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease;
    overflow: visible;
    min-width: 0;
}

.proa-member-card-vertical:hover {
    transform: translateY(-4px);
}

.proa-member-photo-top {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #ececec;
    border-radius: 28px;
    display: block;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.proa-member-photo-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.35s ease;
}

.proa-member-card-vertical:hover .proa-member-photo-top img {
    transform: scale(1.03);
}

.proa-member-info-content {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.proa-member-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--proa-blue);
    margin: 0 0 10px 0;
    line-height: 1.15;
}

.proa-member-name a {
    color: inherit;
    text-decoration: none;
}

.proa-member-empresa {
    font-size: 15px;
    color: #767676;
    margin: 0 0 18px 0;
    line-height: 1.35;
}

.proa-member-empresa strong {
    font-weight: 700;
    color: #707070;
}

.proa-member-cargo-group {
    margin-bottom: 18px;
}

.proa-member-cargo-label {
    font-size: 15px;
    color: #808080;
    font-weight: 700;
    font-style: italic;
    margin: 0;
    line-height: 1.2;
}

.proa-member-cargo {
    font-size: 15px;
    color: #808080;
    font-style: italic;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.proa-member-actions-bottom {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 14px;
}

.proa-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--proa-orange);
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.proa-action-icon svg {
    width: 20px;
    height: 20px;
}

.proa-action-icon:hover {
    transform: scale(1.1);
    color: #c95d0f;
}

.proa-action-icon.is-disabled {
    opacity: 0.25;
    pointer-events: none;
}

.proa-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--proa-text);
}

.proa-rating-stars {
    display: flex;
    gap: 2px;
    color: var(--proa-orange);
}

.proa-rating-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.proa-rating-stars .is-muted {
    opacity: 0.35;
}

.proa-rating-value {
    color: #2d2d2d;
}

.proa-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.proa-page-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--proa-card-bg);
    color: var(--proa-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.proa-page-btn:hover {
    background: #f4f4f4;
    color: var(--proa-blue);
}

.proa-page-btn.active {
    background: var(--proa-orange);
    color: #fff;
}

.proa-no-members {
    text-align: center;
    padding: 70px 20px;
    color: var(--proa-text-muted);
    font-size: 16px;
    grid-column: 1 / -1;
    background: #f7f7f7;
    border-radius: 28px;
}

/* Login Form */
.proa-login-container {
    max-width: 560px;
    margin: 56px auto 72px;
    padding: 0 20px;
    font-family: 'DM Sans', sans-serif;
}

.proa-login-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(29, 64, 89, 0.08);
    color: var(--proa-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proa-login-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(244, 165, 68, 0.14), transparent 28%),
        linear-gradient(145deg, #ffffff 0%, #fbf7f1 100%);
    border: 1px solid rgba(214, 146, 42, 0.18);
    border-radius: 34px;
    padding: 42px 36px;
    box-shadow: 0 24px 56px rgba(17, 24, 39, 0.08);
}

.proa-login-header {
    text-align: center;
    margin-bottom: 28px;
}

.proa-login-header h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--proa-text);
    letter-spacing: -0.04em;
    margin: 0 0 8px 0;
}

.proa-login-header p {
    font-size: 15px;
    color: var(--proa-text-muted);
    margin: 0 auto;
    line-height: 1.65;
    max-width: 34ch;
}

.proa-login-form {
    position: relative;
    z-index: 1;
}

.proa-form-group {
    margin-bottom: 20px;
}

.proa-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--proa-text);
    margin-bottom: 8px;
}

.proa-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--proa-border);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    color: var(--proa-text);
    background: var(--proa-input-bg);
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.proa-input:focus {
    outline: none;
    border-color: var(--proa-blue);
    box-shadow: 0 0 0 4px rgba(26, 58, 74, 0.1);
    background: #fff;
}

.proa-input::placeholder {
    color: #bbb;
}

.proa-login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 6px 0 22px;
}

.proa-login-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--proa-text);
    cursor: pointer;
}

.proa-login-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--proa-orange);
}

.proa-login-inline-link {
    color: var(--proa-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.proa-login-inline-link:hover {
    text-decoration: underline;
}

.proa-form-error {
    background: #fff0f0;
    border: 1px solid #f5c2c7;
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 18px;
    color: #b42318;
    font-size: 14px;
    line-height: 1.5;
}

.proa-btn-primary {
    width: 100%;
    padding: 16px 24px;
    background: var(--proa-blue);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 8px;
}

.proa-btn-primary:hover {
    background: var(--proa-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 58, 74, 0.3);
}

.proa-btn-primary:active {
    transform: translateY(0);
}

.proa-login-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--proa-text-muted);
    line-height: 1.6;
}

.proa-login-state-card {
    text-align: center;
}

.proa-login-state-card .proa-login-header p {
    max-width: 30ch;
}

.proa-login-state-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.proa-login-state-primary {
    margin-top: 0;
}

.proa-login-state-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 999px;
    background: rgba(29, 64, 89, 0.08);
    color: var(--proa-blue);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.proa-login-state-secondary:hover {
    background: rgba(29, 64, 89, 0.12);
    transform: translateY(-1px);
}

/* Members Zone */
.proa-zone-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 36px 20px 60px;
    font-family: 'DM Sans', sans-serif;
}

.proa-zone-header {
    text-align: center;
    margin-bottom: 34px;
}

.proa-zone-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(29, 64, 89, 0.08);
    color: var(--proa-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proa-zone-header h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: var(--proa-text);
    letter-spacing: -0.05em;
    margin: 0 0 10px 0;
}

.proa-zone-header p {
    font-size: 17px;
    color: var(--proa-text-muted);
    max-width: 50ch;
    margin: 0 auto;
    line-height: 1.7;
}

.proa-zone-card {
    background:
        radial-gradient(circle at top right, rgba(244, 165, 68, 0.16), transparent 22%),
        linear-gradient(145deg, #ffffff 0%, #fbf7f1 100%);
    border: 1px solid rgba(214, 146, 42, 0.18);
    border-radius: 34px;
    padding: 42px;
    box-shadow: 0 24px 56px rgba(17, 24, 39, 0.08);
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.proa-zone-profile {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.proa-zone-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(29, 64, 89, 0.08);
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
    background: #eef1f3;
    flex-shrink: 0;
}

.proa-zone-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proa-zone-meta {
    display: flex;
    justify-content: center;
}

.proa-zone-member-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(212, 146, 42, 0.12);
    color: #c57d16;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proa-zone-eyebrow {
    margin: 0 0 10px;
    color: #c57d16;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proa-zone-info h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--proa-text);
    letter-spacing: -0.05em;
    margin: 0 0 12px 0;
    line-height: 1.02;
}

.proa-zone-summary {
    font-size: 16px;
    color: var(--proa-text-muted);
    margin: 0 0 18px 0;
    line-height: 1.7;
}

.proa-zone-bio {
    margin: 0 0 28px;
    max-width: 58ch;
    font-size: 17px;
    color: var(--proa-text);
    line-height: 1.75;
}

.proa-zone-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.proa-zone-action-card {
    display: block;
    padding: 22px 22px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(29, 64, 89, 0.08);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.04);
}

.proa-zone-action-card:hover {
    transform: translateY(-3px);
    border-color: rgba(29, 64, 89, 0.16);
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.08);
}

.proa-zone-action-card-primary {
    background: linear-gradient(135deg, #1d4059 0%, #294e67 100%);
    border-color: transparent;
    box-shadow: 0 18px 34px rgba(29, 64, 89, 0.18);
}

.proa-zone-action-label {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c57d16;
}

.proa-zone-action-card strong {
    display: block;
    font-size: 22px;
    line-height: 1.2;
    color: var(--proa-text);
    letter-spacing: -0.03em;
}

.proa-zone-action-card-primary .proa-zone-action-label {
    color: rgba(248, 180, 98, 0.92);
}

.proa-zone-action-card-primary strong {
    color: #ffffff;
}

/* VIP Restricted */
.proa-restricted {
    max-width: 1040px;
    margin: 72px auto;
    padding: 0 20px;
    font-family: 'DM Sans', sans-serif;
}

.proa-restricted-card {
    position: relative;
    overflow: hidden;
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 44px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(244, 165, 68, 0.16), transparent 28%),
        linear-gradient(145deg, #ffffff 0%, #fbf7f1 100%);
    border: 1px solid rgba(214, 146, 42, 0.18);
    box-shadow: 0 28px 60px rgba(17, 24, 39, 0.08);
    text-align: center;
}

.proa-restricted-card::before,
.proa-restricted-card::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.proa-restricted-card::before {
    width: 180px;
    height: 180px;
    top: -64px;
    right: -40px;
    background: rgba(212, 146, 42, 0.08);
}

.proa-restricted-card::after {
    width: 120px;
    height: 120px;
    bottom: -48px;
    left: -28px;
    background: rgba(29, 64, 89, 0.08);
}

.proa-restricted-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(29, 64, 89, 0.08);
    color: var(--proa-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proa-restricted-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #f4a544 0%, #d57b2d 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: #fff;
    box-shadow: 0 18px 36px rgba(213, 123, 45, 0.28);
}

.proa-restricted-icon svg {
    width: 44px;
    height: 44px;
}

.proa-restricted h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    color: var(--proa-text);
    line-height: 1.02;
    letter-spacing: -0.04em;
    max-width: 12ch;
    margin: 0 auto 18px;
}

.proa-restricted-lead {
    max-width: 54ch;
    margin: 0 auto 30px;
    font-size: 18px;
    color: var(--proa-text-muted);
    line-height: 1.7;
}

.proa-restricted-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.proa-restricted-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 56px;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.proa-restricted-btn-primary {
    background: linear-gradient(135deg, var(--proa-orange) 0%, #d57b2d 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(213, 123, 45, 0.24);
}

.proa-restricted-btn-secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--proa-blue);
    border: 1px solid rgba(29, 64, 89, 0.14);
}

.proa-restricted-btn:hover {
    transform: translateY(-2px);
}

.proa-restricted-btn-primary:hover {
    box-shadow: 0 18px 34px rgba(213, 123, 45, 0.3);
}

.proa-restricted-btn-secondary:hover {
    background: rgba(29, 64, 89, 0.08);
    border-color: rgba(29, 64, 89, 0.22);
}

@media (max-width: 768px) {
    .proa-restricted {
        margin: 48px auto;
        padding: 0 16px;
    }

    .proa-restricted-card {
        padding: 36px 24px;
        border-radius: 26px;
    }

    .proa-restricted-icon {
        width: 82px;
        height: 82px;
        border-radius: 24px;
        margin-bottom: 24px;
    }

    .proa-restricted-icon svg {
        width: 38px;
        height: 38px;
    }

    .proa-restricted-lead {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .proa-restricted-btn {
        width: 100%;
        min-width: 0;
    }
}

/* Blog VIP */
.proa-blog-vip {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    font-family: 'DM Sans', sans-serif;
}

.proa-blog-header {
    text-align: center;
    margin-bottom: 42px;
}

.proa-blog-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(29, 64, 89, 0.08);
    color: var(--proa-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proa-blog-header h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    color: var(--proa-text);
    letter-spacing: -0.05em;
    margin: 0 0 10px 0;
}

.proa-blog-header p {
    max-width: 50ch;
    margin: 0 auto;
    font-size: 17px;
    color: var(--proa-text-muted);
    line-height: 1.7;
}

.proa-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.proa-blog-card {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(244, 165, 68, 0.12), transparent 30%),
        linear-gradient(145deg, #ffffff 0%, #fbf7f1 100%);
    border-radius: 28px;
    border: 1px solid rgba(29, 64, 89, 0.08);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.proa-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(17, 24, 39, 0.12);
    border-color: rgba(29, 64, 89, 0.16);
}

.proa-blog-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
    background: #eef1f3;
}

.proa-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.proa-blog-card:hover .proa-blog-card-image img {
    transform: scale(1.05);
}

.proa-blog-card-content {
    padding: 24px 24px 26px;
}

.proa-blog-card-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 146, 42, 0.12);
    color: #c57d16;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.proa-blog-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--proa-text);
    margin: 0 0 12px 0;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.proa-blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.proa-blog-card-title a::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.proa-blog-card-title a:hover {
    color: var(--proa-blue);
}

.proa-blog-card-excerpt {
    font-size: 15px;
    color: var(--proa-text-muted);
    line-height: 1.75;
    margin: 0 0 18px 0;
}

.proa-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--proa-text-muted);
}

.proa-blog-card-meta svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

/* Activities List */
.proa-activities {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    font-family: 'DM Sans', sans-serif;
}

.proa-activities-header {
    text-align: center;
    margin-bottom: 48px;
}

.proa-activities-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--proa-text);
    margin: 0 0 8px 0;
}

.proa-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.proa-activity-card {
    background: var(--proa-card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.proa-activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.proa-activity-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--proa-bg);
}

.proa-activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proa-activity-content {
    padding: 24px;
}

.proa-activity-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--proa-orange);
    font-weight: 600;
    margin: 0 0 10px 0;
}

.proa-activity-date svg {
    width: 16px;
    height: 16px;
}

.proa-activity-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--proa-text);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.proa-activity-excerpt {
    font-size: 14px;
    color: var(--proa-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Scalabl Access */
.proa-scalabl-container {
    max-width: 700px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
    font-family: 'DM Sans', sans-serif;
}

.proa-scalabl-card {
    background: var(--proa-card-bg);
    border-radius: 28px;
    padding: 56px 48px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
}

.proa-scalabl-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--proa-blue), var(--proa-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 36px;
}

.proa-scalabl-icon svg {
    width: 50px;
    height: 50px;
    color: #fff;
}

.proa-scalabl-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--proa-text);
    margin: 0 0 16px 0;
}

.proa-scalabl-card p {
    font-size: 16px;
    color: var(--proa-text-muted);
    line-height: 1.7;
    margin: 0 0 36px 0;
}

.proa-scalabl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--proa-orange);
    color: #fff;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.proa-scalabl-btn:hover {
    background: #c95d0f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 115, 26, 0.35);
}

.proa-scalabl-btn svg {
    width: 20px;
    height: 20px;
}

.proa-scalabl-iframe {
    width: 100%;
    margin-top: 24px;
    border: 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(26, 58, 74, 0.08);
}

/* Responsive */
@media (max-width: 1180px) {
    .proa-directory-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .proa-directory-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 22px;
        gap: 18px 20px;
    }

    .proa-directory-filter-action {
        grid-column: 1 / -1;
    }

    .proa-directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 24px;
    }

    .proa-zone-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
    }

    .proa-zone-profile {
        max-width: 260px;
        margin: 0 auto;
    }

    .proa-zone-bio {
        margin-left: auto;
        margin-right: auto;
    }

    .proa-zone-actions-grid {
        grid-template-columns: 1fr;
    }

    .proa-blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .proa-directory {
        padding: 0 16px 40px;
    }

    .proa-directory-header h2 {
        font-size: 32px;
    }

    .proa-directory-filters {
        grid-template-columns: 1fr;
        padding: 18px;
        border-radius: 24px;
        margin-bottom: 42px;
    }

    .proa-directory-filter-label {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .proa-directory-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .proa-member-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .proa-member-name {
        font-size: 18px;
    }

    .proa-member-empresa,
    .proa-member-cargo,
    .proa-member-cargo-label {
        font-size: 14px;
    }

    .proa-member-actions-bottom {
        gap: 12px;
    }

    .proa-zone-container {
        padding: 24px 16px 48px;
    }

    .proa-zone-header h2 {
        font-size: 32px;
    }

    .proa-zone-action-card strong {
        font-size: 20px;
    }

    .proa-blog-header h2,
    .proa-activities-header h2 {
        font-size: 32px;
    }

    .proa-login-container {
        margin: 40px auto 56px;
        padding: 0 16px;
    }

    .proa-login-card {
        padding: 34px 24px;
        border-radius: 28px;
    }

    .proa-login-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .proa-login-inline-link {
        font-size: 13px;
    }
}

/* Ficha Miembro (Profile View) — Card moderna con sidebar */
.proa-ficha-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 40px;
    font-family: 'DM Sans', sans-serif;
    background-color: #ffffff;
}

.proa-ficha-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--proa-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 26px;
    transition: color 0.2s ease;
}
.proa-ficha-back:hover { color: #d4922a; }
.proa-ficha-back svg { flex-shrink: 0; }

.proa-ficha-layout {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 48px;
    align-items: flex-start;
}

.proa-ficha-sidebar {
    background: #f6f6f6;
    border-radius: 32px;
    padding: 30px 30px 44px;
    box-sizing: border-box;
}

.proa-ficha-sidebar-title {
    font-size: 17px;
    font-weight: 700;
    color: #101010;
    margin: 0 0 24px 2px;
    letter-spacing: 0.02em;
}

.proa-ficha-sidebar-inner {
    background: #dddddd;
    border-radius: 28px;
    padding: 22px 22px 36px;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.proa-field-group {
    margin-bottom: 0;
}

.proa-field-group-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #262626;
    margin-bottom: 14px;
    padding-left: 8px;
}

.proa-field-group-input {
    display: flex;
    align-items: center;
    background: #ffffff;
    min-height: 50px;
    border-radius: 18px;
    padding: 0 16px;
    position: relative;
    gap: 10px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.proa-field-group-input input {
    border: none;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #222222;
    flex: 1;
    background: transparent;
}

.proa-field-group-input input::placeholder {
    color: #626262;
}

.proa-field-icon {
    color: #101010;
    flex-shrink: 0;
}

.proa-field-group-select {
    justify-content: space-between;
}

.proa-select-value {
    flex: 1;
    color: #999999;
}

.proa-select-value.has-value {
    color: #333333;
}

.proa-chevron {
    color: #999999;
    flex-shrink: 0;
}

.proa-hidden-select {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.proa-btn-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 42px;
    background: #f59f3e;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 28px;
    margin-top: -6px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s ease, box-shadow 0.2s ease;
    align-self: flex-start;
    box-shadow: 0 14px 24px rgba(247, 144, 54, 0.18);
}
.proa-btn-filter:hover {
    background: #e48d30;
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(247, 144, 54, 0.24);
}

.proa-ficha-card {
    flex: 1;
    background: transparent;
    padding: 4px 0 0;
}

.proa-ficha-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 344px;
    gap: 52px;
    align-items: flex-start;
}

.proa-ficha-info-col { flex: 1; min-width: 0; }

.proa-ficha-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(29, 64, 89, 0.08);
    color: var(--proa-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proa-ficha-name {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;
    color: #12496a;
    margin: 0 0 22px 0;
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.proa-ficha-meta-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 32px;
}

.proa-ficha-meta-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 96px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: linear-gradient(145deg, #ffffff 0%, #fbf7f1 100%);
    border: 1px solid rgba(29, 64, 89, 0.08);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
}

.proa-ficha-meta-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #c57d16;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proa-ficha-meta-row strong {
    font-size: 17px;
    font-weight: 700;
    color: #163247;
    line-height: 1.35;
}

.proa-ficha-meta-cargo {
    background: linear-gradient(145deg, #fff7ec 0%, #fffaf2 100%);
}

.proa-ficha-bio {
    margin-top: 12px;
}
.proa-ficha-bio > strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.proa-ficha-bio-content {
    max-width: 620px;
    font-size: 17px;
    color: #232323;
    line-height: 1.8;
}
.proa-ficha-bio-content a {
    color: var(--proa-blue);
    font-weight: 600;
    text-decoration: none;
}
.proa-ficha-bio-content a:hover {
    text-decoration: underline;
}
.proa-ficha-bio-content p { margin: 0 0 16px 0; }

.proa-ficha-photo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 2px;
}

.proa-ficha-photo {
    width: 344px;
    aspect-ratio: 1 / 1;
    border-radius: 34px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
    box-shadow: 0 18px 36px rgba(18, 73, 106, 0.08);
}
.proa-ficha-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.proa-ficha-photo .proa-badge-facilitador {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #d4922a;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.proa-social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.proa-ficha-contact-card {
    width: 100%;
    padding: 20px 18px 18px;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff 0%, #fbf7f1 100%);
    border: 1px solid rgba(29, 64, 89, 0.08);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
}

.proa-ficha-contact-title {
    margin-bottom: 14px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #c57d16;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proa-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 44px;
    border-radius: 12px;
    background: #f59f3e;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.proa-social-btn:hover {
    background: #e48d30;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(228, 141, 48, 0.24);
}
.proa-social-btn svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .proa-ficha-layout {
        grid-template-columns: 1fr;
    }
    .proa-ficha-sidebar {
        width: 100%;
    }
    .proa-ficha-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .proa-ficha-container {
        padding: 18px 16px 28px;
    }
    .proa-ficha-sidebar {
        border-radius: 24px;
        padding: 24px 20px 28px;
    }
    .proa-ficha-sidebar-inner {
        border-radius: 22px;
        padding: 20px 16px 24px;
        gap: 28px;
    }
    .proa-ficha-card {
        padding: 0;
    }
    .proa-ficha-inner {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 24px;
    }
    .proa-ficha-meta-group {
        grid-template-columns: 1fr;
    }
    .proa-ficha-photo-col {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .proa-ficha-photo {
        width: min(100%, 300px);
    }
    .proa-ficha-info-col {
        width: 100%;
        text-align: left;
    }
    .proa-ficha-name {
        font-size: 24px;
    }
    .proa-ficha-meta-row {
        font-size: 15px;
    }
    .proa-ficha-bio-content {
        font-size: 16px;
        line-height: 1.7;
    }
}
