/* ============================================
Orho - Design System CSS
Estilos especificos que complementam o Tailwind
============================================ */

/* ----- Smooth Scroll ----- */
html {
    scroll-behavior: smooth;
}

/* ----- Blazor Focus Reset ----- */
[tabindex="-1"]:focus,
[tabindex="-1"]:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* ----- CSS Variables ----- */
:root {
    --orho-primary: #f4bb03;
    --orho-primary-hover: #ffd234;
    --orho-primary-active: #d4a203;
    --orho-primary-dark: #f4bb03;
    --orho-primary-dark-hover: #d4a203;
    --orho-secondary: #b0b0b0;
    --orho-tertiary: #c6a97a;
    --orho-bg-light: #fef9f2;
    --orho-bg-dark: #121212;
    --orho-surface-light: #ffffff;
    --orho-surface-dark: #1e1e1e;
    --orho-text-light: #1a1a1a;
    --orho-text-dark: #fef9f2;
    --orho-text-muted-light: #5c5c5c;
    --orho-text-muted-dark: #b0b0b0;
    --orho-border-light: #ececec;
    --orho-border-dark: #2a2a2a;
    --orho-success-light: #2e7d32;
    --orho-success-dark: #81c784;
    --orho-warning-light: #ed6c02;
    --orho-warning-dark: #ffb74d;
    --orho-error-light: #d32f2f;
    --orho-error-dark: #ef9a9a;
    --orho-info-light: #0288d1;
    --orho-info-dark: #4fc3f7;
    --orho-radius: 12px;
}

/* ============================================
   Buttons - Animacao customizada
   ============================================ */

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: var(--orho-radius);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    outline: none;
}

.btn:focus-visible::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    box-shadow: 0 0 0 3px rgba(244, 187, 3, 0.4);
    animation: btn-pulse-glow 1.4s ease-out infinite;
}

@keyframes btn-pulse-glow {
    0% { box-shadow: 0 0 0 3px rgba(244, 187, 3, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(244, 187, 3, 0); }
    100% { box-shadow: 0 0 0 3px rgba(244, 187, 3, 0.4); }
}

.btn-primary {
    background-color: var(--orho-primary);
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: var(--orho-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.btn-primary:active {
    background-color: var(--orho-primary-active);
    transform: translateY(0);
}

.btn-outline {
    border: 1px solid var(--orho-primary);
    color: var(--orho-primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--orho-primary);
    color: #1a1a1a;
    transform: translateY(-1px);
}

.btn-outline:active {
    background-color: var(--orho-primary-active);
    color: #1a1a1a;
}

.dark .btn-outline {
    border-color: var(--orho-primary-dark);
    color: var(--orho-primary);
}

.dark .btn-outline:hover {
    background-color: var(--orho-primary-dark);
    color: var(--orho-bg-dark);
}

/* ============================================
   Layout
   ============================================ */

.orho-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Sora', system-ui, sans-serif;
    background-color: var(--orho-bg-light);
    color: var(--orho-text-light);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dark .orho-page {
    background-color: var(--orho-bg-dark);
    color: var(--orho-text-dark);
}

.orho-main {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* ============================================
   Header - Glass Effect
   ============================================ */

.orho-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--orho-border-light);
}

.dark .orho-header {
    background-color: rgba(18, 18, 18, 0.8);
    border-bottom-color: var(--orho-border-dark);
}

.orho-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    outline: none;
}

.orho-logo-img {
    height: 22px;
    width: auto;
}

.orho-theme-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: opacity 0.2s ease;
    outline: none;
    min-width: 1.5rem;
    min-height: 1.5rem;
}

.orho-theme-toggle:hover { opacity: 0.8; }

.orho-theme-icon-light,
.orho-theme-icon-dark {
    display: flex;
    align-items: center;
}

.orho-theme-icon-dark { display: none; }
.dark .orho-theme-icon-light { display: none; }
.dark .orho-theme-icon-dark { display: flex; }

/* ============================================
   Footer
   ============================================ */

.orho-footer {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    padding: 1.5rem 1rem;
    color: var(--orho-text-muted-light);
    border-top: 1px solid var(--orho-border-light);
    background-color: var(--orho-bg-light);
}

.orho-footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.orho-footer-icon {
    height: 1.5rem;
    width: auto;
}

.dark .orho-footer {
    color: var(--orho-text-muted-dark);
    border-top-color: var(--orho-border-dark);
    background-color: var(--orho-bg-dark);
}

/* ============================================
   Sections
   ============================================ */

.orho-section-hero {
    width: 100%;
    padding: 7rem 1.25rem 4rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(244, 187, 3, 0.1), transparent), var(--orho-bg-light);
}

.dark .orho-section-hero {
    background: linear-gradient(to bottom, rgba(244, 187, 3, 0.1), transparent), var(--orho-bg-dark);
}

.orho-section-surface {
    width: 100%;
    padding: 4rem 1.25rem;
    text-align: center;
    background-color: var(--orho-surface-light);
}

.dark .orho-section-surface {
    background-color: var(--orho-surface-dark);
}

.orho-section-gradient {
    width: 100%;
    padding: 5rem 1.5rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(244, 187, 3, 0.15), transparent), var(--orho-bg-light);
}

.dark .orho-section-gradient {
    background: linear-gradient(to bottom, rgba(244, 187, 3, 0.15), transparent), var(--orho-bg-dark);
}

/* ============================================
   Typography
   ============================================ */

.orho-title {
    color: var(--orho-primary);
    font-weight: 700;
    outline: none;
}

.orho-title-hero { font-size: 2.25rem; margin-bottom: 0.75rem; }
.orho-title-section { font-size: 1.875rem; margin-bottom: 1rem; font-weight: 600; }

.orho-text {
    color: var(--orho-text-muted-light);
    font-size: 1.125rem;
    line-height: 1.75;
}

.dark .orho-text { color: var(--orho-text-muted-dark); }

.orho-text-container { max-width: 42rem; margin-left: auto; margin-right: auto; }

/* ============================================
   Card
   ============================================ */

.orho-card {
    max-width: 28rem;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--orho-border-light);
    border-radius: var(--orho-radius);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    padding: 2rem;
}

.dark .orho-card {
    background-color: rgba(0, 0, 0, 0.4);
    border-color: var(--orho-border-dark);
}

/* ============================================
   Form
   ============================================ */

.orho-form-group { text-align: left; margin-bottom: 1rem; }

.orho-label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--orho-text-muted-light);
}

.dark .orho-label { color: var(--orho-text-muted-dark); }

.orho-input {
    width: 100%;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    background-color: transparent;
    border: 1px solid var(--orho-border-light);
    color: inherit;
    font-family: inherit;
    font-size: 1rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.orho-input:focus {
    outline: none;
    border-color: var(--orho-primary);
    box-shadow: 0 0 0 2px rgba(244, 187, 3, 0.3);
}

.dark .orho-input { border-color: var(--orho-border-dark); }

.dark .orho-input:focus {
    border-color: var(--orho-primary-dark);
    box-shadow: 0 0 0 2px rgba(244, 187, 3, 0.3);
}

/* ============================================
   Utilities
   ============================================ */

.orho-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .orho-buttons { flex-direction: row; justify-content: center; }
}

/* ============================================
   Icons
   ============================================ */

.orho-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.icon-primary {
    color: var(--orho-primary);
}

.dark .icon-primary {
    color: var(--orho-primary-dark);
}

.icon-inline {
    vertical-align: -0.125em;
    margin-right: 0.25rem;
}

.icon-check {
    color: var(--orho-primary);
    margin-right: 0.5rem;
    vertical-align: -0.125em;
}

.dark .icon-check {
    color: var(--orho-primary-dark);
}

/* ============================================
   Landing Page - Hero
   ============================================ */

.orho-landing-hero {
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(244, 187, 3, 0.15) 0%, rgba(244, 187, 3, 0.05) 50%, transparent 100%), var(--orho-bg-light);
}

.dark .orho-landing-hero {
    background: linear-gradient(135deg, rgba(244, 187, 3, 0.15) 0%, rgba(244, 187, 3, 0.05) 50%, transparent 100%), var(--orho-bg-dark);
}

.orho-landing-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.orho-badge {
display: inline-block;
padding: 0.5rem 1rem;
background-color: rgba(244, 187, 3, 0.25);
    color: var(--orho-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dark .orho-badge {
    background-color: rgba(244, 187, 3, 0.2);
    color: var(--orho-primary-dark);
}

.orho-landing-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--orho-text-light);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.dark .orho-landing-title {
    color: var(--orho-text-dark);
}

.orho-highlight {
    color: var(--orho-primary);
}

.dark .orho-highlight {
    color: var(--orho-primary-dark);
}

.orho-landing-subtitle {
    font-size: 1.25rem;
    color: var(--orho-text-muted-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.dark .orho-landing-subtitle {
    color: var(--orho-text-muted-dark);
}

/* ============================================
   Comparison Table
   ============================================ */

.orho-comparison-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    position: relative;
}

.orho-comparison-table {
min-width: 550px;
border-radius: var(--orho-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.orho-comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.orho-comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--orho-border-light);
}

.dark .orho-comparison-row {
    border-top-color: var(--orho-border-dark);
}

.orho-comparison-col {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.orho-col-orho {
background-color: rgba(244, 187, 3, 0.1);
    color: var(--orho-text-light);
}

.dark .orho-col-orho {
background-color: rgba(244, 187, 3, 0.1);
    color: var(--orho-text-dark);
}

.orho-comparison-header .orho-col-orho {
background-color: var(--orho-primary);
color: #1a1a1a;
    font-weight: 600;
    justify-content: center;
}

.orho-comparison-header .orho-col-others {
    justify-content: center;
}

.orho-col-others {
    background-color: var(--orho-surface-light);
    color: var(--orho-text-muted-light);
}

.dark .orho-col-others {
    background-color: var(--orho-surface-dark);
    color: var(--orho-text-muted-dark);
}

.orho-comparison-header .orho-col-others {
    background-color: var(--orho-surface-light);
    color: var(--orho-text-muted-light);
    font-weight: 600;
}

.dark .orho-comparison-header .orho-col-others {
    background-color: var(--orho-surface-dark);
    color: var(--orho-text-muted-dark);
}

/* Scroll hint indicator */
.orho-scroll-hint {
    display: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, rgba(254, 249, 242, 0.95) 40%);
    padding: 1rem 0.75rem 1rem 2.5rem;
    pointer-events: none;
    z-index: 10;
    animation: scroll-hint-fade 4s ease-in-out forwards;
}

.dark .orho-scroll-hint {
    background: linear-gradient(90deg, transparent, rgba(18, 18, 18, 0.95) 40%);
}

.orho-scroll-hint-icon {
    animation: scroll-hint-bounce 1s ease-in-out infinite;
    color: var(--orho-primary);
}

@keyframes scroll-hint-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

@keyframes scroll-hint-fade {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

@media (max-width: 640px) {
    .orho-comparison-wrapper {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .orho-scroll-hint {
        display: flex;
        align-items: center;
    }

    .orho-comparison-col {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   Process Grid
   ============================================ */

.orho-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.orho-process-card {
background-color: var(--orho-bg-light);
border: 1px solid var(--orho-border-light);
border-radius: var(--orho-radius);
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.orho-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.dark .orho-process-card {
    background-color: var(--orho-bg-dark);
    border-color: var(--orho-border-dark);
}

.orho-process-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.orho-process-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--orho-primary);
    margin-bottom: 0.75rem;
}

.orho-process-text {
    color: var(--orho-text-muted-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.dark .orho-process-text {
    color: var(--orho-text-muted-dark);
}

/* ============================================
   Plans Grid
   ============================================ */

.orho-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.orho-plan-card {
background-color: var(--orho-surface-light);
border: 1px solid var(--orho-border-light);
border-radius: var(--orho-radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease;
}

.orho-plan-card:hover {
    transform: translateY(-4px);
}

.dark .orho-plan-card {
    background-color: var(--orho-surface-dark);
    border-color: var(--orho-border-dark);
}

.orho-plan-featured {
    border-color: var(--orho-primary);
    border-width: 2px;
    transform: scale(1.02);
}

.orho-plan-featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.orho-plan-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background-color: var(--orho-primary);
color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    text-transform: uppercase;
}

.orho-plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orho-primary);
    margin-bottom: 0.5rem;
}

.orho-plan-subtitle {
    font-size: 0.9rem;
    color: var(--orho-text-muted-light);
    margin-bottom: 1.5rem;
}

.dark .orho-plan-subtitle {
    color: var(--orho-text-muted-dark);
}

.orho-plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 0;
}

.orho-plan-features li {
    padding: 0.5rem 0;
    color: var(--orho-text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--orho-border-light);
}

.dark .orho-plan-features li {
    color: var(--orho-text-dark);
    border-bottom-color: var(--orho-border-dark);
}

.orho-plan-features li:last-child {
    border-bottom: none;
}

/* ============================================
   FAQ
   ============================================ */

.orho-faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.orho-faq-item {
background-color: var(--orho-bg-light);
border: 1px solid var(--orho-border-light);
border-radius: var(--orho-radius);
    margin-bottom: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    list-style: none;
}

.orho-faq-item::-webkit-details-marker,
.orho-faq-item::marker {
    display: none;
}

.orho-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dark .orho-faq-item {
    background-color: var(--orho-bg-dark);
    border-color: var(--orho-border-dark);
}

.orho-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    font-weight: 500;
    color: var(--orho-text-light);
}

.dark .orho-faq-question {
    color: var(--orho-text-dark);
}

.orho-faq-icon {
    font-size: 1.5rem;
    color: var(--orho-primary);
    font-weight: 300;
}

.orho-faq-icon-close { display: none; }
.orho-faq-item[open] .orho-faq-icon-open { display: none; }
.orho-faq-item[open] .orho-faq-icon-close { display: inline; }

.orho-faq-question {
    list-style: none;
}

.orho-faq-question::-webkit-details-marker {
    display: none;
}

.orho-faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--orho-text-muted-light);
    line-height: 1.6;
    text-align: left;
}

.dark .orho-faq-answer {
    color: var(--orho-text-muted-dark);
}

/* ============================================
   CTA Section
   ============================================ */

.orho-section-cta {
    width: 100%;
    padding: 5rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--orho-primary) 0%, var(--orho-primary-dark) 100%);
}

.orho-cta-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.orho-cta-subtitle {
    font-size: 1.125rem;
    color: rgba(26, 26, 26, 0.8);
    max-width: 500px;
    margin: 0 auto;
}

.orho-section-cta .btn-primary {
    background-color: #1a1a1a;
    color: var(--orho-primary);
}

.orho-section-cta .btn-primary:hover {
    background-color: #2c2c2c;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    .orho-comparison-table {
        font-size: 0.85rem;
    }

    .orho-comparison-col {
        padding: 0.75rem;
    }

    .orho-plans-grid {
        grid-template-columns: 1fr;
    }

    .orho-plan-featured {
        transform: none;
    }

    .orho-plan-featured:hover {
        transform: translateY(-4px);
    }
}

/* ============================================
   Form Validation
   ============================================ */

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

/* ============================================
   Blazor Error
   ============================================ */

.blazor-error-boundary {
    background: linear-gradient(135deg, var(--orho-primary) 0%, var(--orho-primary-dark) 100%);
    padding: 1.5rem;
    border-radius: var(--orho-radius);
    color: #1a1a1a;
    font-family: 'Sora', system-ui, sans-serif;
    margin: 1rem;
    box-shadow: 0 4px 12px rgba(244, 187, 3, 0.3);
}

.blazor-error-boundary::after {
    content: "Ocorreu um erro. Por favor, recarregue a página.";
    font-weight: 500;
}

.dark .blazor-error-boundary {
    background: linear-gradient(135deg, var(--orho-primary-dark) 0%, var(--orho-primary-dark-hover) 100%);
}

/* ============================================
   404 Not Found Page
   ============================================ */

.orho-notfound {
    width: 100%;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(244, 187, 3, 0.1) 0%, transparent 100%), var(--orho-bg-light);
    animation: fadeIn 0.6s ease-out;
}

.dark .orho-notfound {
    background: linear-gradient(135deg, rgba(244, 187, 3, 0.1) 0%, transparent 100%), var(--orho-bg-dark);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.orho-notfound-content {
    max-width: 600px;
    margin: 0 auto;
}

.orho-notfound-logo {
    height: 6rem;
    width: auto;
    margin: 0 auto 1.5rem;
    opacity: 0.3;
    animation: pulse-number 3s infinite ease-in-out;
}

.orho-notfound-number {
    font-size: clamp(6rem, 20vw, 10rem);
    font-weight: 700;
    color: var(--orho-primary);
    line-height: 1;
    text-shadow: 0 0 30px rgba(244, 187, 3, 0.3);
    animation: pulse-number 3s infinite ease-in-out;
}

.dark .orho-notfound-number {
    color: var(--orho-primary-dark);
    text-shadow: 0 0 30px rgba(244, 187, 3, 0.3);
}

@keyframes pulse-number {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.9; }
}

.orho-notfound-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--orho-text-light);
    margin: 1rem 0;
}

.dark .orho-notfound-title {
    color: var(--orho-text-dark);
}

.orho-notfound-text {
    font-size: 1rem;
    color: var(--orho-text-muted-light);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.dark .orho-notfound-text {
    color: var(--orho-text-muted-dark);
}

.orho-notfound-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .orho-notfound-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.mr-2 {
    margin-right: 0.5rem;
}