/* ==============================================
   VARIABLES & RESET
   ============================================= */
:root {
    --bg: #071426;
    --bg-soft: #0D1B2A;
    --surface: rgba(13, 27, 42, 0.92);
    --surface-soft: rgba(255, 255, 255, 0.04);
    --gold: #D4A84F;
    --gold-hover: #E0B65F;
    --gold-soft: rgba(212, 168, 79, 0.12);
    --white: #ffffff;
    --text: #eaeaea;
    --muted: rgba(234, 234, 234, 0.72);
    --border: rgba(212, 168, 79, 0.2);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --radius: 16px;
    --radius-sm: 10px;
    --container: 1400px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (min-width: 1100px) {
    html {
        zoom: 0.68;
    }
}

body {
    margin: 0;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    background-color: #071426;
    background-image: url('../img/bg-dark-law.webp');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(7, 20, 38, 0.88);
    z-index: 0;
    pointer-events: none;
}

body > * {
    position: relative;
    z-index: 1;
}

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

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

img {
    max-width: 100%;
}

/* ==============================================
   CONTAINER
   ============================================= */

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

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

.site-header {
    height: 90px;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(7, 20, 38, 0.92);
    border-bottom: 1px solid rgba(212, 168, 79, 0.2);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    gap: 2rem;
    width: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.brand img.brand-logo {
    height: 72px;
    width: auto;
    display: block;
}

/* Fallback brand text (used when img fails) */
.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    color: var(--gold);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text small {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.brand-text strong {
    display: block;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    letter-spacing: 0.02em;
}

/* ==============================================
   NAVIGATION
   ============================================= */

.site-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.site-nav a {
    color: rgba(234, 234, 234, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.site-nav a:hover {
    color: #D4A84F;
}

.nav-cta-wrap {
    display: block;
    justify-self: end;
    flex-shrink: 0;
}

/* ==============================================
   BUTTONS
   ============================================= */

.nav-cta,
.button {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 8px;
    background: linear-gradient(135deg, #E0B65F, #D4A84F);
    color: #071426;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 8px 28px rgba(212, 168, 79, 0.25);
    text-decoration: none;
}

.button:hover,
.nav-cta:hover {
    background: linear-gradient(135deg, #E8C070, #D4A84F);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 79, 0.35);
}

.button-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(212, 168, 79, 0.4);
    box-shadow: none;
}

.button-secondary:hover {
    border-color: #D4A84F;
    color: #D4A84F;
    transform: translateY(-2px);
    background: transparent;
    box-shadow: none;
}

.button-danger {
    color: var(--white);
    background: linear-gradient(135deg, #b44b4b, #912d2d);
    border-color: rgba(255, 124, 124, 0.45);
    box-shadow: 0 16px 35px rgba(145, 45, 45, 0.25);
}

.nav-toggle {
    display: none;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--white);
    background: transparent;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    align-items: center;
    gap: 0.5rem;
}

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

.hero-section {
    min-height: 100vh;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: stretch;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 0;
}

.hero-image-wrap {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    left: 0;
    width: 40%;
    background: linear-gradient(to right, #071426, transparent);
    z-index: 2;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    position: absolute;
    inset: 0;
}

.hero-image-placeholder {
    display: none;
}

/* legacy hero support */
.page-hero,
.auth-section {
    padding: 5.5rem 0 4rem;
}

.hero-desc {
    max-width: 44rem;
    margin-top: 0.25rem;
}

.hero-actions,
.button-row,
.profile-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ==============================================
   TYPOGRAPHY
   ============================================= */

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: 'Playfair Display', serif;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 5vw, 5.5rem);
    line-height: 1.05;
    color: #fff;
    margin: 0 0 1.5rem 0;
}

h2 {
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    color: var(--white);
}

h3 {
    font-size: 1.15rem;
    color: var(--white);
}

p {
    color: var(--muted);
    line-height: 1.72;
    margin: 0;
}

.gold-text {
    color: #D4A84F;
}

.eyebrow {
    display: block;
    color: #D4A84F;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* ==============================================
   TRUST BADGES
   ============================================= */

.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 168, 79, 0.2);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(234, 234, 234, 0.8);
    font-size: 0.85rem;
}

.trust-badge svg,
.trust-badge i {
    color: #D4A84F;
    flex-shrink: 0;
}

.trust-badge span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(234, 234, 234, 0.8);
    white-space: nowrap;
}

/* ==============================================
   SECTIONS
   ============================================= */

.section {
    padding: 80px 0;
    position: relative;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    margin-top: 0.5rem;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #D4A84F;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-cta {
    margin-top: 2.5rem;
    text-align: center;
}

/* ==============================================
   ISSUE CARDS
   ============================================= */

.issue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.issue-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: rgba(13, 27, 42, 0.7);
    border: 1px solid rgba(212, 168, 79, 0.15);
    border-radius: 12px;
    transition: all 0.25s;
    cursor: pointer;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.issue-card:hover {
    border-color: rgba(212, 168, 79, 0.5);
    background: rgba(13, 27, 42, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.issue-card-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(212, 168, 79, 0.12);
    border: 1px solid rgba(212, 168, 79, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A84F;
}

.issue-card-body {
    flex: 1;
    min-width: 0;
}

.issue-card-body h3,
.issue-card > h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #fff;
    margin: 0 0 0.4rem 0;
}

.issue-card-body p,
.issue-card > p {
    color: rgba(234, 234, 234, 0.65);
    font-size: 0.88rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
}

.issue-card-arrow {
    color: #D4A84F;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    transition: transform 200ms ease;
}

.issue-card:hover .issue-card-arrow {
    transform: translateX(4px);
}

/* Legacy issue-icon */
.issue-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: var(--gold-soft);
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ==============================================
   STEPS / COMO FUNCIONA
   ============================================= */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.steps-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 1rem;
    margin-top: 3rem;
}

.step-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
}

.step-circle {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 79, 0.5);
    background: rgba(13, 27, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A84F;
    box-shadow: 0 0 0 8px rgba(212, 168, 79, 0.06);
}

.step-num {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #D4A84F;
    color: #071426;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.step-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.step-item p {
    color: rgba(234, 234, 234, 0.65);
    font-size: 0.88rem;
    max-width: 200px;
    line-height: 1.5;
    margin: 0;
}

.step-connector {
    display: flex;
    align-items: flex-start;
    padding-top: 50px;
    color: rgba(212, 168, 79, 0.4);
    font-size: 1.5rem;
    letter-spacing: 4px;
    user-select: none;
}

/* Legacy step-card */
.step-card {
    text-align: center;
    position: relative;
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: var(--gold-soft);
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ==============================================
   CONTENT CARDS (generic)
   ============================================= */

.content-card,
.filter-card,
.stat-card,
.empty-card,
.plan-card,
.search-card {
    position: relative;
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.search-card {
    margin-bottom: 1.5rem;
}

.plan-card--selected {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(212, 168, 79, 0.18) !important;
    background: linear-gradient(180deg, rgba(212, 168, 79, 0.07), rgba(255, 255, 255, 0.02)) !important;
}

/* ==============================================
   TAGS & MISC
   ============================================= */

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold);
    font-size: 0.875rem;
}

.tag-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ==============================================
   PLAN / STATS CARDS
   ============================================= */

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.plan-card-featured {
    border-color: rgba(212, 168, 79, 0.45);
}

.plan-top,
.lawyer-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.hero-stat strong,
.plan-card strong,
.stat-card strong {
    display: block;
    font-size: 2rem;
    color: var(--white);
}

/* ==============================================
   DIRECTORY / LAWYERS
   ============================================= */

.directory-layout,
.profile-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: start;
    gap: 1.5rem;
}

.results-grid {
    display: grid;
    gap: 1.25rem;
}

.lawyer-card {
    position: relative;
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1.5rem;
    align-items: start;
    transition: border-color 200ms ease, transform 200ms ease;
}

.lawyer-card:hover {
    border-color: rgba(212, 168, 79, 0.4);
    transform: translateY(-2px);
}

.lawyer-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.lawyer-actions .button {
    white-space: nowrap;
    width: auto;
}

.lawyer-avatar,
.profile-avatar {
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(212, 168, 79, 0.2), rgba(255, 255, 255, 0.04));
}

.lawyer-avatar {
    height: 90px;
}

.lawyer-avatar-image,
.profile-avatar-image {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.lawyer-avatar-image {
    height: 90px;
}

.lawyer-avatar span,
.profile-avatar span {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

/* ==============================================
   PROFILE
   ============================================= */

.profile-hero {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(212, 168, 79, 0.06), rgba(13, 27, 42, 0.8));
}

.profile-avatar {
    height: 130px;
    width: 130px;
}

.profile-avatar-image {
    height: 130px;
    width: 130px;
}

/* ==============================================
   FLASH MESSAGES
   ============================================= */

.flash-stack {
    padding-top: 1rem;
}

.flash {
    margin-bottom: 1rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
}

.flash-success {
    background: rgba(43, 112, 74, 0.2);
    border-color: rgba(92, 202, 132, 0.35);
}

.flash-error {
    background: rgba(138, 46, 46, 0.2);
    border-color: rgba(255, 118, 118, 0.35);
}

/* ==============================================
   FORMS
   ============================================= */

.form-grid {
    display: grid;
    gap: 1rem;
}

.form-grid label,
.checkbox-field {
    display: grid;
    gap: 0.55rem;
    color: var(--white);
}

.form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.full-span {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.95rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.22);
    color: var(--white);
    transition: border-color 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(212, 168, 79, 0.5);
}

select[multiple] {
    min-height: 10rem;
}

/* ==============================================
   AUTH / LOGIN
   ============================================= */

.auth-wrap {
    display: grid;
    justify-items: center;
}

.auth-card {
    width: min(100%, 480px);
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(13, 27, 42, 0.9);
    box-shadow: var(--shadow);
}

.auth-card h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 0.5rem;
}

.auth-card p {
    margin-bottom: 1.75rem;
}

.auth-hint {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==============================================
   PASSWORD FIELD WITH EYE TOGGLE
   ============================================= */

.password-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrap input {
    width: 100%;
    padding-right: 44px !important;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(234, 234, 234, 0.4);
    display: flex;
    align-items: center;
    padding: 0;
    transition: color 0.2s;
    flex-shrink: 0;
}

.password-toggle:hover {
    color: var(--gold);
}

/* ==============================================
   VERIFICATION CODE INPUTS
   ============================================= */

.code-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 1.5rem;
}

.code-input {
    width: 52px;
    height: 64px;
    padding: 0;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    background: rgba(212, 168, 79, 0.06);
    border: 1.5px solid rgba(212, 168, 79, 0.3);
    border-radius: 10px;
    color: var(--gold);
    transition: border-color 0.2s, background 0.2s;
    caret-color: var(--gold);
}

.code-input:focus {
    border-color: var(--gold);
    background: rgba(212, 168, 79, 0.1);
    outline: none;
}

@media (max-width: 400px) {
    .code-input {
        width: 42px;
        height: 54px;
        font-size: 1.4rem;
    }

    .code-inputs {
        gap: 6px;
    }
}

/* ==============================================
   MODAL OVERLAY
   ============================================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 20, 38, 0.92);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 20px;
}

.modal-box {
    background: #0D1B2A;
    border: 1px solid rgba(212, 168, 79, 0.25);
    border-radius: var(--radius);
    padding: 2.5rem;
    width: min(100%, 480px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
    position: relative;
}

.modal-box h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-box p {
    color: rgba(234, 234, 234, 0.65);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

/* ==============================================
   ADMIN LAYOUT V2 — header topo + sidebar esquerda
   ============================================= */

.admin-v2 {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Hambúrguer — oculto em desktop, visível em mobile */
.admin-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(212, 168, 79, 0.1);
    border: 1px solid rgba(212, 168, 79, 0.22);
    color: var(--gold);
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.admin-menu-btn:hover {
    background: rgba(212, 168, 79, 0.2);
}

/* Lado direito do header (usuário + sair) */
.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.admin-header-user {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    text-align: right;
    font-size: 0.85rem;
}

.admin-header-user strong {
    font-size: 0.9rem;
    color: var(--text);
}

.admin-header-user span {
    color: var(--muted);
    font-size: 0.75rem;
}

/* Área abaixo do header: sidebar + conteúdo */
.admin-body-layout {
    display: flex;
    flex: 1;
    min-height: 0;
    position: relative;
}

/* Sidebar */
.admin-aside {
    width: 240px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(7, 20, 38, 0.97);
    border-right: 1px solid rgba(212, 168, 79, 0.1);
    position: sticky;
    top: 90px;
    align-self: flex-start;
    height: calc(100vh - 90px);
    overflow-y: auto;
}

.admin-aside .panel-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.25rem;
}

/* Área de conteúdo principal */
.admin-main-area {
    flex: 1;
    min-width: 0;
}

/* Fundo escuro mobile (fechar sidebar ao clicar fora) */
.admin-sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 20, 38, 0.72);
    z-index: 24;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.admin-sidebar-backdrop.is-active {
    display: block;
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .admin-menu-btn {
        display: flex;
    }

    .admin-header-user {
        display: none;
    }

    .admin-aside {
        position: fixed;
        top: 90px;
        left: 0;
        bottom: 0;
        height: auto;
        width: 260px;
        z-index: 25;
        transform: translateX(-100%);
        transition: transform 0.28s ease;
    }

    .admin-aside.is-open {
        transform: translateX(0);
    }
}

/* ==============================================
   ADMIN / DASHBOARD PANEL
   ============================================= */

.panel-body {
    background: #071426;
    background-image: url('../img/bg-dark-law.webp');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.panel-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.panel-sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    min-height: 100vh;
    padding: 1.5rem;
    background: rgba(7, 20, 38, 0.96);
    border-right: 1px solid rgba(212, 168, 79, 0.1);
}

.brand-panel {
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-panel img.brand-logo,
.brand-panel img {
    height: 40px;
    width: auto;
    display: block;
}

.panel-nav,
.panel-nav-inner {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.panel-nav {
    flex-direction: column;
    align-items: flex-start;
}

.panel-nav a {
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    transition: color 0.2s;
}

.panel-nav a:hover,
.table-link:hover {
    color: var(--gold);
}

.panel-nav i,
.panel-nav svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.panel-main {
    display: grid;
    grid-template-rows: auto 1fr;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(13, 27, 42, 0.72);
    position: sticky;
    top: 0;
    backdrop-filter: blur(14px);
    z-index: 5;
}

.muted {
    display: block;
    color: var(--muted);
}

.panel-content,
.panel-section {
    padding: 1.5rem;
}

.panel-footer {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--muted);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.split-grid {
    display: grid;
    gap: 1.5rem;
}

/* ==============================================
   PANEL — DESIGN SYSTEM
   ============================================= */

/* Page header: título + botão de ação */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: var(--text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.page-title i,
.page-title svg {
    color: var(--gold);
    opacity: 0.8;
}

/* Cards melhorados */
.content-card {
    border-top: 2px solid rgba(212, 168, 79, 0.35) !important;
}

.content-card h1,
.content-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Stat cards profissionais */
.stat-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 168, 79, 0.1);
    border: 1px solid rgba(212, 168, 79, 0.2);
    color: var(--gold);
    flex-shrink: 0;
}

.stat-card span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(234, 234, 234, 0.5);
    font-weight: 500;
}

.stat-card strong {
    font-size: 2.2rem !important;
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--gold) !important;
    line-height: 1;
    letter-spacing: -0.5px;
}

/* Nav ativa */
.panel-nav a.active,
.admin-aside .panel-nav a.active {
    color: var(--gold);
    font-weight: 600;
}

.panel-nav a.active i,
.panel-nav a.active svg {
    color: var(--gold);
}

/* Tabelas profissionais */
th {
    font-size: 0.7rem !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(212, 168, 79, 0.65) !important;
    font-weight: 600;
    padding-bottom: 0.85rem !important;
    border-bottom: 1px solid rgba(212, 168, 79, 0.18) !important;
}

td {
    font-size: 0.875rem;
    color: rgba(234, 234, 234, 0.82);
}

tbody tr:hover {
    background: rgba(212, 168, 79, 0.03);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Badges de status */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.badge::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.8;
}

.badge-ativo    { background: rgba(52, 211, 153, 0.1);  color: #34d399; border: 1px solid rgba(52, 211, 153, 0.2); }
.badge-inativo  { background: rgba(234, 234, 234, 0.06); color: rgba(234,234,234,0.4); border: 1px solid rgba(234,234,234,0.1); }
.badge-bloqueado{ background: rgba(239, 68, 68, 0.1);   color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.badge-pago,
.badge-paid     { background: rgba(52, 211, 153, 0.1);  color: #34d399; border: 1px solid rgba(52,211,153,0.2); }
.badge-pendente,
.badge-pending  { background: rgba(251, 191, 36, 0.1);  color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }
.badge-cancelado,
.badge-canceled { background: rgba(239, 68, 68, 0.08);  color: #f87171; border: 1px solid rgba(239,68,68,0.15); }

/* Link de ação destrutivo */
.link-danger {
    color: #f87171 !important;
}

.link-danger:hover {
    color: #ef4444 !important;
}

/* Modal grande (formulários com vários campos) */
.modal-box-lg {
    width: min(100%, 680px);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 168, 79, 0.3) transparent;
}

.modal-box-lg::-webkit-scrollbar {
    width: 5px;
}

.modal-box-lg::-webkit-scrollbar-track {
    background: transparent;
}

.modal-box-lg::-webkit-scrollbar-thumb {
    background: rgba(212, 168, 79, 0.3);
    border-radius: 4px;
}

/* Cabeçalho dentro do modal */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 168, 79, 0.15);
}

.modal-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.modal-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.modal-close-btn:hover {
    background: rgba(212, 168, 79, 0.12);
    color: var(--gold);
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.settings-grid div {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
}

/* ==============================================
   TABLES
   ============================================= */

.table-wrap {
    overflow-x: auto;
}

.table-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.table-actions form {
    margin: 0;
}

.link-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.link-button:hover {
    color: var(--gold);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 0.95rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.table-link {
    color: var(--muted);
    transition: color 160ms ease;
}

.blocking-banner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-sm);
    background: rgba(150, 45, 45, 0.25);
    border: 1px solid rgba(255, 124, 124, 0.35);
}

/* ==============================================
   MODAL
   ============================================= */

.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 7, 15, 0.78);
    backdrop-filter: blur(4px);
}

.modal-dialog {
    position: relative;
    width: min(100%, 520px);
    padding: 2.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(160deg, #0e1e30, #071426);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 168, 79, 0.08);
}

.modal-close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    border: 0;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 160ms ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.modal-locked .modal-backdrop {
    background: rgba(2, 7, 15, 0.88);
}

/* ==============================================
   PAGINATION
   ============================================= */

.pagination {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.03);
    transition: color 160ms ease, background 160ms ease;
}

.pagination-link.is-active,
.pagination-link:hover {
    color: #09121e;
    background: linear-gradient(135deg, #e0ba68, var(--gold));
}

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

.site-footer {
    position: relative;
    padding: 70px 0 0;
    background-image: url('../img/bg-footer.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 38, 0.88);
    z-index: 0;
}

.site-footer > .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo img {
    height: 90px;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: #D4A84F;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 1.25rem 0;
    font-family: 'Inter', sans-serif;
}

.footer-col a,
.footer-col p {
    display: block;
    color: rgba(234, 234, 234, 0.65);
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
    line-height: 1.5;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #D4A84F;
}

.footer-brand-desc {
    color: rgba(234, 234, 234, 0.65);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.75rem 0 1rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 1.25rem;
}

.footer-social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 168, 79, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(234, 234, 234, 0.75);
    transition: all 0.2s;
}

.footer-social-link:hover {
    border-color: #D4A84F;
    color: #D4A84F;
    background: rgba(212, 168, 79, 0.08);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(234, 234, 234, 0.65);
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
}

.footer-contact-item i,
.footer-contact-item svg {
    color: #D4A84F;
    flex-shrink: 0;
}

.footer-contact-item span {
    color: rgba(234, 234, 234, 0.65);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(212, 168, 79, 0.15);
    padding: 1.25rem 0;
    margin-top: 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(234, 234, 234, 0.4);
    font-size: 0.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==============================================
   COMPACT HERO (pages other than home)
   ============================================= */

.compact-hero p {
    max-width: 44rem;
}

/* ==============================================
   RESPONSIVE
   ============================================= */

/* ==============================================
   PÁGINA ADVOGADO — ACESSO / PLANOS
   ============================================= */

.lawyer-access-hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.lawyer-access-copy {
    max-width: 680px;
}

.lawyer-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.lawyer-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.benefit-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(212, 168, 79, 0.12);
    border: 1px solid rgba(212, 168, 79, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.lawyer-benefits li strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.lawyer-benefits li span {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Plans grid — horizontal */
.lawyer-plans-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: stretch;
}

.lawyer-plan-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: border-color 0.2s, transform 0.2s;
    flex: 1;
    min-width: 260px;
}

.lawyer-plan-card:hover {
    border-color: rgba(212, 168, 79, 0.4);
    transform: translateY(-3px);
}

.lawyer-plan-card.plan-destaque {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(212, 168, 79, 0.08), rgba(212, 168, 79, 0.03));
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #071426;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 0.75rem 0 0.25rem;
}

.plan-currency {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
}

.plan-value {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.plan-period {
    font-size: 0.9rem;
    color: var(--muted);
}

.plan-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.plan-features li i,
.plan-features li svg {
    color: var(--gold);
    flex-shrink: 0;
}

.plans-swipe-hint {
    display: none;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(212, 168, 79, 0.6);
    margin-top: 0.5rem;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ==============================================
   TABLET — 1024px
   ============================================= */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .issue-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .steps-flow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-connector {
        display: none;
    }

    .directory-layout,
    .profile-layout {
        grid-template-columns: 1fr;
    }
}

/* ==============================================
   TABLET PEQUENO — 980px
   ============================================= */
@media (max-width: 980px) {
    .panel-shell,
    .split-grid,
    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
    }

    .panel-sidebar {
        display: none;
        position: fixed;
        inset: 0 auto 0 0;
        width: min(82vw, 320px);
        z-index: 25;
    }

    .panel-sidebar.is-open {
        display: flex;
        flex-direction: column;
    }

    .panel-header {
        padding-inline: 1rem;
    }

    .profile-hero,
    .blocking-banner {
        grid-template-columns: 1fr;
    }

    .lawyer-card {
        grid-template-columns: 72px 1fr;
        gap: 1rem;
        padding: 1.25rem;
    }
}

/* ==============================================
   MOBILE — 768px
   ============================================= */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    /* Header */
    .site-header {
        height: 70px;
    }

    .header-inner {
        height: 70px;
    }

    .brand img.brand-logo {
        height: 52px;
    }

    .nav-cta-wrap {
        flex-shrink: 0;
        max-width: 50%;
    }

    .nav-cta-wrap .button {
        padding: 9px 14px;
        font-size: 0.75rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
        width: auto;
        min-height: 40px;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-copy {
        padding: 60px 0 40px;
        text-align: center;
        align-items: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-image-wrap {
        min-height: 320px;
        height: 320px;
        order: -1;
    }

    .hero-image-wrap::before {
        background: linear-gradient(to bottom, transparent, #071426);
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        left: 0;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    /* Botões */
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .button,
    .button-secondary {
        width: 100%;
        justify-content: center;
        min-height: 52px;
        white-space: normal;
        text-align: center;
        word-break: break-word;
    }

    /* Grids */
    .issue-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-socials {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* Advogado acesso */
    .lawyer-access-copy {
        max-width: 100%;
    }

    /* Carrossel de planos no mobile */
    .lawyer-plans-grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding-bottom: 1rem;
        gap: 1rem;
        /* mostra dica visual que tem mais cards */
        padding-right: 2rem;
    }

    .lawyer-plans-grid::-webkit-scrollbar {
        height: 4px;
    }

    .lawyer-plans-grid::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.05);
        border-radius: 4px;
    }

    .lawyer-plans-grid::-webkit-scrollbar-thumb {
        background: rgba(212, 168, 79, 0.4);
        border-radius: 4px;
    }

    .lawyer-plan-card {
        scroll-snap-align: start;
        flex: 0 0 82vw;
        min-width: 0;
        max-width: 340px;
    }

    .plans-swipe-hint {
        display: flex;
    }

    /* Prevenir scroll horizontal */
    .hero-section,
    .section,
    .section-soft {
        overflow-x: hidden;
    }

    h1, h2, h3, p {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Seções */
    .section {
        padding: 3.5rem 0;
    }

    .section-heading {
        text-align: center;
    }

    .section-cta {
        text-align: center;
    }

    .section-cta .button {
        width: auto;
        max-width: 100%;
        display: inline-flex;
        white-space: normal;
        text-align: center;
    }
}

/* ==============================================
   MOBILE PEQUENO — 480px
   ============================================= */
@media (max-width: 480px) {
    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .hero-image-wrap {
        min-height: 260px;
        height: 260px;
    }

    .trust-badge {
        font-size: 0.78rem;
    }

    .issue-card {
        padding: 1.1rem 1.25rem;
    }

    .step-circle {
        width: 70px;
        height: 70px;
    }

    .footer-logo img {
        height: 70px;
    }

    .nav-cta-wrap .button {
        padding: 9px 14px;
        font-size: 0.75rem;
    }
}
