:root {
    --wcpro-ink: #183038;
    --wcpro-muted: #5d6d73;
    --wcpro-line: #d7e0df;
    --wcpro-surface: #ffffff;
    --wcpro-surface-soft: #f4f6f3;
    --wcpro-surface-strong: #e8efec;
    --wcpro-accent: #0d6b66;
    --wcpro-accent-dark: #0b4f53;
    --wcpro-highlight: #c6924a;
    --wcpro-shadow: 0 24px 60px rgba(14, 37, 45, 0.10);
    --wcpro-radius-lg: 28px;
    --wcpro-radius-md: 18px;
    --wcpro-radius-sm: 12px;
}

.wcpro-archive-page,
.wcpro-single-contact {
    background:
        radial-gradient(circle at top left, rgba(13, 107, 102, 0.10), transparent 28%),
        linear-gradient(180deg, #fbfcfa 0%, #f2f5f2 100%);
}

.wcpro-archive-shell,
.wcpro-single-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 24px 72px;
}

.wcpro-archive-hero,
.wcpro-single-header {
    margin-bottom: 32px;
    padding: 32px;
    border-radius: var(--wcpro-radius-lg);
    background: linear-gradient(135deg, rgba(13, 107, 102, 0.96), rgba(11, 79, 83, 0.96));
    box-shadow: var(--wcpro-shadow);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.wcpro-archive-hero::after,
.wcpro-single-header::after {
    content: "";
    position: absolute;
    inset: auto -60px -80px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.wcpro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin: 0 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wcpro-archive-title,
.wcpro-single-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
    color: #fff;
}

.wcpro-archive-intro,
.wcpro-single-intro {
    max-width: 720px;
    margin: 16px 0 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
}

.wcpro-directory-container {
    padding: 28px;
    border-radius: var(--wcpro-radius-lg);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(215, 224, 223, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(22, 40, 42, 0.08);
}

.wcpro-directory-filters {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(220px, 0.9fr);
    gap: 16px;
    padding: 18px;
    margin-bottom: 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 243, 0.98));
    border: 1px solid var(--wcpro-line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.wcpro-search-input,
.wcpro-category-filter,
.wcpro-field-wrap input,
.wcpro-field-wrap textarea,
.wcpro-field-wrap select {
    width: 100%;
    padding: 14px 16px;
    min-height: 54px;
    border: 1px solid var(--wcpro-line);
    border-radius: var(--wcpro-radius-sm);
    background: #fff;
    color: var(--wcpro-ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wcpro-search-input:focus,
.wcpro-category-filter:focus,
.wcpro-field-wrap input:focus,
.wcpro-field-wrap textarea:focus,
.wcpro-field-wrap select:focus {
    outline: none;
    border-color: var(--wcpro-primary, var(--wcpro-accent));
    box-shadow: 0 0 0 4px rgba(13, 107, 102, 0.12);
    transform: translateY(-1px);
}

.wcpro-directory {
    display: grid;
    gap: 24px;
}

.wcpro-layout-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.wcpro-contact-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 248, 0.98));
    border: 1px solid rgba(215, 224, 223, 0.9);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(24, 48, 56, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wcpro-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 42px rgba(24, 48, 56, 0.12);
    border-color: rgba(13, 107, 102, 0.25);
}

.wcpro-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(145deg, rgba(13, 107, 102, 0.14), rgba(198, 146, 74, 0.18));
}

.wcpro-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcpro-placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--wcpro-accent-dark);
    background: linear-gradient(145deg, rgba(13, 107, 102, 0.18), rgba(255, 255, 255, 0.8));
}

.wcpro-placeholder-img .dashicons {
    width: 64px;
    height: 64px;
    font-size: 64px;
}

.wcpro-card-content {
    padding: 24px 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.wcpro-card-content h3,
.wcpro-card-content h3 a {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.2;
    color: var(--wcpro-ink);
    text-decoration: none;
}

.wcpro-cargo {
    margin: 0;
    font-size: 0.98rem;
    color: var(--wcpro-muted);
}

.wcpro-contact-details {
    display: grid;
    gap: 12px;
    padding-top: 4px;
}

.wcpro-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.96rem;
    color: var(--wcpro-ink);
}

.wcpro-detail-item .dashicons {
    color: var(--wcpro-accent);
    width: 18px;
    height: 18px;
    font-size: 18px;
}

.wcpro-detail-item a {
    color: inherit;
    text-decoration: none;
    word-break: break-word;
}

.wcpro-detail-item a:hover,
.wcpro-view-profile:hover,
.wcpro-contact-meta-text a:hover,
.wcpro-lgpd-row a:hover {
    color: var(--wcpro-accent);
}

.wcpro-card-footer {
    padding: 0 24px 24px;
}

.wcpro-view-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--wcpro-accent), var(--wcpro-accent-dark));
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(13, 107, 102, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wcpro-view-profile:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 28px rgba(13, 107, 102, 0.24);
    color: #fff;
}

.wcpro-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    margin-top: 4px;
    width: fit-content;
}

.wcpro-status-badge.status-active {
    background: #e8f7ee;
    color: #0f6b35;
}

.wcpro-status-badge.status-inactive {
    background: #fbeaea;
    color: #a12622;
}

.wcpro-directory-pagination {
    justify-content: center;
    padding-top: 8px;
}

.wcpro-page-link {
    min-width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--wcpro-line);
    background: #fff;
    color: var(--wcpro-ink);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.wcpro-page-link:hover,
.wcpro-page-link.current {
    border-color: transparent;
    background: linear-gradient(135deg, var(--wcpro-accent), var(--wcpro-accent-dark));
    color: #fff;
    box-shadow: 0 12px 24px rgba(13, 107, 102, 0.18);
}

.wcpro-directory-results > p {
    margin: 0;
    padding: 28px;
    text-align: center;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--wcpro-line);
    color: var(--wcpro-muted);
}

.wcpro-custom-form {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 243, 0.98));
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(215, 224, 223, 0.95);
    box-shadow: 0 18px 36px rgba(24, 48, 56, 0.08);
    max-width: 760px;
    margin: 0;
    backdrop-filter: blur(10px);
}

.wcpro-form-fields {
    display: grid;
    gap: 20px;
}

.wcpro-form-row {
    margin: 0;
}

.wcpro-field-wrap {
    display: grid;
    gap: 8px;
}

.wcpro-label {
    display: block;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--wcpro-ink);
}

.wcpro-field-wrap textarea {
    min-height: 150px;
    resize: vertical;
}

.wcpro-checkbox-group,
.wcpro-radio-group {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--wcpro-radius-sm);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--wcpro-line);
}

.wcpro-checkbox-group label,
.wcpro-radio-group label,
.wcpro-lgpd-row label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    color: var(--wcpro-ink);
}

.wcpro-section-title,
.wcpro-section-heading {
    margin: 0 0 12px;
    font-size: 1.4rem;
    color: var(--wcpro-ink);
}

.wcpro-lgpd-row {
    padding: 18px;
    border-radius: 16px;
    background: rgba(13, 107, 102, 0.07);
    border: 1px solid rgba(13, 107, 102, 0.12);
}

.wcpro-lgpd-row a {
    color: var(--wcpro-accent-dark);
    font-weight: 700;
}

.wcpro-form-submit {
    margin-top: 4px;
}

.wcpro-form-submit button {
    background: linear-gradient(135deg, var(--wcpro-primary, var(--wcpro-accent)), var(--wcpro-accent-dark));
    color: #fff;
    border: none;
    padding: 16px 30px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 16px 26px rgba(13, 107, 102, 0.18);
}

.wcpro-form-submit button:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 30px rgba(13, 107, 102, 0.24);
}

.wcpro-form-submit button:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.wcpro-form-response {
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
}

.wcpro-form-response.success {
    background: #e8f7ee;
    color: #0f6b35;
    border: 1px solid rgba(15, 107, 53, 0.15);
}

.wcpro-form-response.error {
    background: #fbeaea;
    color: #a12622;
    border: 1px solid rgba(161, 38, 34, 0.14);
}

.wcpro-style-minimal .wcpro-field-wrap input,
.wcpro-style-minimal .wcpro-field-wrap textarea,
.wcpro-style-minimal .wcpro-field-wrap select {
    border: none;
    border-bottom: 2px solid var(--wcpro-line);
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    box-shadow: none;
}

.wcpro-style-minimal .wcpro-field-wrap input:focus,
.wcpro-style-minimal .wcpro-field-wrap textarea:focus,
.wcpro-style-minimal .wcpro-field-wrap select:focus {
    border-bottom-color: var(--wcpro-primary, var(--wcpro-accent));
    box-shadow: none;
}

.wcpro-style-glass {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow: 0 20px 40px rgba(20, 38, 42, 0.10);
    backdrop-filter: blur(16px);
}

.wcpro-style-glass .wcpro-field-wrap input,
.wcpro-style-glass .wcpro-field-wrap textarea,
.wcpro-style-glass .wcpro-field-wrap select,
.wcpro-style-glass .wcpro-checkbox-group,
.wcpro-style-glass .wcpro-radio-group {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.46);
}

.wcpro-single-layout {
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.wcpro-contact-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 24px;
}

.wcpro-profile-card,
.wcpro-contact-panel,
.wcpro-contact-main {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(215, 224, 223, 0.95);
    border-radius: 24px;
    box-shadow: 0 16px 34px rgba(24, 48, 56, 0.08);
    overflow: hidden;
}

.wcpro-profile-card {
    padding: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 246, 243, 0.96));
}

.wcpro-profile-img img {
    display: block;
    width: 100%;
    height: auto;
}

.wcpro-contact-panel {
    padding: 20px;
    display: grid;
    gap: 14px;
}

.wcpro-contact-meta-item {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 246, 0.98));
    border: 1px solid var(--wcpro-line);
}

.wcpro-contact-meta-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wcpro-muted);
}

.wcpro-contact-meta-value {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--wcpro-ink);
    font-weight: 600;
}

.wcpro-contact-meta-value .dashicons {
    color: var(--wcpro-accent);
    margin-top: 2px;
    width: 18px;
    height: 18px;
    font-size: 18px;
}

.wcpro-contact-meta-text,
.wcpro-contact-meta-text a {
    color: var(--wcpro-ink);
    text-decoration: none;
    word-break: break-word;
}

.wcpro-contact-main {
    padding: 32px;
    display: grid;
    gap: 24px;
}

.wcpro-content-body,
.wcpro-content-body p,
.wcpro-contact-form-intro {
    color: var(--wcpro-muted);
    line-height: 1.8;
}

.wcpro-content-body > :first-child {
    margin-top: 0;
}

.wcpro-contact-divider {
    width: 100%;
    height: 1px;
    border: 0;
    background: linear-gradient(90deg, transparent, rgba(13, 107, 102, 0.28), transparent);
    margin: 0;
}

@media (max-width: 960px) {
    .wcpro-archive-shell,
    .wcpro-single-shell {
        padding: 32px 18px 56px;
    }

    .wcpro-directory-container,
    .wcpro-custom-form,
    .wcpro-contact-main,
    .wcpro-contact-panel {
        padding-left: 20px;
        padding-right: 20px;
    }

    .wcpro-directory-filters,
    .wcpro-single-layout {
        grid-template-columns: 1fr;
    }

    .wcpro-contact-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .wcpro-archive-hero,
    .wcpro-single-header,
    .wcpro-directory-container,
    .wcpro-custom-form,
    .wcpro-contact-main,
    .wcpro-contact-panel {
        padding: 22px;
    }

    .wcpro-archive-title,
    .wcpro-single-title {
        font-size: 2rem;
    }

    .wcpro-layout-grid {
        grid-template-columns: 1fr;
    }

    .wcpro-card-content,
    .wcpro-card-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}
