/* ========================================
   COMPONENTS.CSS
   Componentes reutilizaveis do sistema
   ======================================== */

/* ==================== ACCESSIBILITY ==================== */

/* Classe para ocultar visualmente, mas manter acessivel para leitores de tela */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==================== BUTTONS ==================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    font-family: var(--font-family);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Button Variants */
.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: var(--shadow-primary);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid transparent;
}

.btn-white:hover {
    border-color: var(--color-primary);
}

.btn-secondary {
    background: var(--color-bg);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-border);
}

.btn-danger {
    background: var(--color-red);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-danger:hover {
    background: #d32f2f;
}

.btn-login {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

.btn-text {
    display: inline-block;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline-block;
}

/* ==================== BADGES ==================== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: var(--font-size-small);
    font-weight: 600;
    white-space: nowrap;
}

/* Role Badge */
.role-badge {
    background: var(--color-red);
    color: var(--color-white);
}

.role-badge.visualizador {
    background: var(--color-gray);
}

.role-badge.adm {
    background: var(--color-red);
}

/* Badge with dot indicator */
.badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
}

.badge-emoji {
    font-size: 1rem;
    line-height: 1;
}

.badge-text {
    line-height: 1;
}

/* ==================== CARDS ==================== */

.card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Card Hero (Grande) */
.card-hero {
    grid-row: 1 / 3;
    min-height: 400px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.card-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.card-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.card-tag {
    font-size: var(--font-size-small);
    font-weight: 600;
    text-transform: lowercase;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

.card-text {
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.card-more {
    font-size: var(--font-size-small);
    opacity: 0.9;
}

/* Card Purple */
.card-purple {
    background: var(--color-primary);
    color: var(--color-white);
}

.card-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title-small {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.card-description {
    font-size: var(--font-size-small);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

/* Card Gray */
.card-gray {
    background: var(--color-gray);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 180px;
}

.card-date {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.card-message {
    font-size: var(--font-size-base);
    opacity: 0.95;
}

/* Card Green */
.card-green {
    background: var(--color-green);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 180px;
}

.card-icon {
    margin-bottom: var(--spacing-md);
}

.card-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-title-green {
    font-size: 1.5rem;
    font-weight: 600;
}

/* ==================== AVATARS ==================== */

.avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid var(--color-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* User Avatar Button */
.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid var(--color-white);
    background: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== REFRESH BUTTON ==================== */

.refresh-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all 0.2s ease;
}

.refresh-btn:hover {
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
}

.refresh-btn.spinning svg {
    animation: refreshSpin 0.6s ease;
}

@keyframes refreshSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==================== NOTIFICATIONS ==================== */

.notification-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all 0.2s ease;
}

.notification-btn:hover {
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
}

.notification-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 20px;
    height: 20px;
    background: var(--color-red);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-white);
    padding: 0 5px;
}

/* Mostrar apenas quando tem conteúdo */
.notification-badge:not(:empty) {
    display: flex;
}

/* Esconder quando vazio */
.notification-badge:empty {
    display: none;
}

/* ==================== EMPTY STATE ==================== */

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl);
    min-height: 400px;
}

.empty-state-icon {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: var(--spacing-lg);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.empty-state h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.empty-state p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    line-height: 1.6;
}

/* ==================== FORM ELEMENTS ==================== */

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    background: var(--color-bg-card);
    color: var(--color-text);
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.form-group input::placeholder {
    color: var(--color-text-light);
}

/* ==================== UTILITY CLASSES ==================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: var(--spacing-sm); }
.gap-2 { gap: var(--spacing-md); }

/* ==================== ANIMATIONS ==================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.3s ease;
}

/* ==================== LOADING STATES ==================== */

.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-white);
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== TOOLTIPS ==================== */

[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 0.5rem 1rem;
    background: var(--color-black);
    color: var(--color-white);
    font-size: var(--font-size-small);
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

[data-tooltip]:hover::before {
    opacity: 0.9;
}

/* ==================== PROFILE COMPLETENESS INDICATOR ==================== */

.profile-completeness {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.profile-completeness-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.profile-completeness-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-completeness-percentage {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.profile-completeness-bar {
    height: 8px;
    background: var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.profile-completeness-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), #a855f7);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.profile-completeness-fill.complete {
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
}

.profile-completeness-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.profile-tip {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.profile-tip.completed {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    text-decoration: line-through;
    opacity: 0.7;
}

/* ==================== FAVORITES / STAR BUTTON ==================== */

.favorite-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--color-text-light);
}

.favorite-btn:hover {
    background: rgba(255, 193, 7, 0.1);
    color: #FFC107;
    transform: scale(1.1);
}

.favorite-btn.active {
    color: #FFC107;
}

.favorite-btn.active svg {
    fill: #FFC107;
}

.favorite-btn svg {
    width: 20px;
    height: 20px;
    transition: all 0.2s ease;
}

.favorite-btn:active {
    transform: scale(0.95);
}

/* Animação de estrela ao favoritar */
@keyframes starPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.favorite-btn.animating {
    animation: starPop 0.3s ease;
}

/* ==================== BACK TO TOP BUTTON ==================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.4);
}

.back-to-top:active {
    transform: translateY(0);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}

/* ==================== CONFIRMATION MODAL ==================== */

.confirm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.confirm-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.confirm-modal {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 0;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.confirm-modal-overlay.active .confirm-modal {
    transform: scale(1) translateY(0);
}

.confirm-modal-header {
    padding: 1.5rem 1.5rem 0;
    text-align: center;
}

.confirm-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.confirm-modal-icon.danger {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.confirm-modal-icon.warning {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.confirm-modal-icon svg {
    width: 32px;
    height: 32px;
}

.confirm-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.confirm-modal-body {
    padding: 1rem 1.5rem;
    text-align: center;
}

.confirm-modal-message {
    color: var(--color-text-light);
    line-height: 1.5;
    font-size: 0.9375rem;
}

.confirm-modal-item-preview {
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-text);
    border-left: 3px solid var(--color-primary);
    text-align: left;
    word-break: break-word;
}

.confirm-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    gap: 0.75rem;
}

.confirm-modal-footer .btn {
    flex: 1;
    padding: 0.875rem 1rem;
}

.btn-cancel {
    background: var(--color-bg);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-cancel:hover {
    background: var(--color-border);
}

.btn-confirm-danger {
    background: #f44336;
    color: white;
}

.btn-confirm-danger:hover {
    background: #d32f2f;
}

/* Dark mode support */
[data-theme="dark"] .confirm-modal {
    background: #252525;
}

[data-theme="dark"] .confirm-modal-title {
    color: #e0e0e0;
}

[data-theme="dark"] .confirm-modal-message {
    color: #b0b0b0;
}

[data-theme="dark"] .confirm-modal-item-preview {
    background: #1e1e1e;
    color: #e0e0e0;
}

[data-theme="dark"] .btn-cancel {
    background: #333;
    color: #e0e0e0;
    border-color: #444;
}

[data-theme="dark"] .btn-cancel:hover {
    background: #444;
}

[data-theme="dark"] .profile-completeness {
    background: #1e1e1e;
}

[data-theme="dark"] .profile-completeness-title {
    color: #e0e0e0;
}

[data-theme="dark"] .profile-completeness-bar {
    background: #333;
}

[data-theme="dark"] .profile-tip {
    background: rgba(var(--color-primary-rgb), 0.2);
}

[data-theme="dark"] .favorite-btn {
    color: #888;
}

[data-theme="dark"] .favorite-btn:hover {
    background: rgba(255, 193, 7, 0.15);
}

/* ==================== DOCA SDK 2.0 — DARK MODE ==================== */

[data-theme="dark"] .s-tag {
    color: #a855f7;
}
[data-theme="dark"] .s-tag::before {
    background: #a855f7;
    opacity: .7;
}

[data-theme="dark"] .sdk-callout {
    background: rgba(var(--color-primary-rgb), 0.12);
    border-left-color: #a855f7;
    color: #b0b0b0;
}
[data-theme="dark"] .sdk-callout strong {
    color: #a855f7;
}

[data-theme="dark"] .sdk-accent-bar::before,
[data-theme="dark"] .home-card::before,
[data-theme="dark"] .news-post::before,
[data-theme="dark"] .team-card::before,
[data-theme="dark"] .celebration-card::before {
    background: #a855f7;
}

/* ==================== DOCA SDK 2.0 — REVEAL ANIMATIONS ==================== */

.rev {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: transform, opacity;
}
.rev-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    will-change: transform, opacity;
}
.rev-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    will-change: transform, opacity;
}
.rev-top {
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: transform, opacity;
}
.rev.visible,
.rev-left.visible,
.rev-right.visible,
.rev-top.visible {
    opacity: 1;
    transform: translate(0);
    will-change: auto;
}

/* ==================== DOCA SDK 2.0 — SECTION TAG ==================== */

.s-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-sdk-tag, 3px);
    color: var(--sdk-accent, var(--color-primary));
    margin-bottom: 12px;
}
.s-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--sdk-accent, var(--color-primary));
    opacity: .5;
}

/* ==================== DOCA SDK 2.0 — CTA GLOW + SHIMMER ==================== */

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0); }
    50%      { box-shadow: 0 0 22px var(--sdk-accent-glow, rgba(var(--color-primary-rgb), 0.45)); }
}

.btn-cta {
    position: relative;
    overflow: hidden;
    animation: ctaGlow 3s ease-in-out infinite;
}
.btn-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.14) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.45s;
}
.btn-cta:hover::after {
    transform: translateX(100%);
}

/* ==================== DOCA SDK 2.0 — CARD ACCENT BAR ==================== */

.sdk-accent-bar {
    position: relative;
    overflow: hidden;
}
.sdk-accent-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sdk-accent, var(--color-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 2;
}
.sdk-accent-bar:hover::before {
    transform: scaleX(1);
}

/* ==================== DOCA SDK 2.0 — CALLOUT ==================== */

.sdk-callout {
    border-left: 3px solid var(--sdk-accent, var(--color-primary));
    background: var(--sdk-accent-10, rgba(var(--color-primary-rgb), 0.06));
    padding: 14px 20px;
    font-size: 0.87rem;
    color: var(--color-text-light);
    line-height: 1.65;
}
.sdk-callout strong {
    color: var(--sdk-accent, var(--color-primary));
}

/* ==================== DOCA SDK 2.0 — REDUCED MOTION ==================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .rev, .rev-left, .rev-right, .rev-top {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ==================== DOCA SDK 2.0 — PERFORMANCE ==================== */

.news-post,
.celebration-card,
.team-card {
    content-visibility: auto;
    contain-intrinsic-size: auto 300px;
}

/* ==================== STANDARDIZED EMPTY STATE ==================== */

.empty-state-standard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.empty-state-std-icon {
    font-size: 48px;
    opacity: 0.6;
    margin-bottom: 12px;
    line-height: 1;
}

.empty-state-std-title {
    font-size: 16px;
    color: var(--color-text);
    font-weight: 600;
    margin: 0 0 6px;
}

.empty-state-std-subtitle {
    font-size: 14px;
    color: var(--color-text-light, #888);
    margin: 0;
}

[data-theme="dark"] .empty-state-std-icon {
    opacity: 0.5;
}

[data-theme="dark"] .empty-state-std-subtitle {
    color: var(--color-text-light, #aaa);
}