/* ═══════════════════════════════════════════════════════════════
   PREMIUM VISUAL ELEMENTS - Black/Orange Edition
   Badge System | FAB Menu | Toasts | Modals | Tooltips
   Paleta: #FF6B35 (orange) | #FF8C42 (light orange) | #a855f7 (purple)
   ═══════════════════════════════════════════════════════════════ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. BADGE SYSTEM - Emblemas de Confiança Animados
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.trust-badges-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.trust-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    min-width: 180px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    animation: badgeEntry 0.8s ease-out both;
}

@keyframes badgeEntry {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Stagger delays */
.trust-badge:nth-child(1) { animation-delay: 0.1s; }
.trust-badge:nth-child(2) { animation-delay: 0.2s; }
.trust-badge:nth-child(3) { animation-delay: 0.3s; }
.trust-badge:nth-child(4) { animation-delay: 0.4s; }

/* Glowing pulse effect */
.trust-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #FF6B35, #FF8C42, #FF6B35);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

.trust-badge:hover::before {
    opacity: 0.6;
}

.trust-badge:hover {
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(255, 107, 53, 0.3),
        inset 0 0 40px rgba(255, 107, 53, 0.05);
    transform: translateY(-8px) scale(1.05);
}

.badge-icon {
    font-size: 48px;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.badge-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.badge-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.4;
}

.badge-verified-mark {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
    animation: verifiedSpin 4s linear infinite;
}

@keyframes verifiedSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Badge variants - diferentes cores */
.trust-badge.badge-security {
    border-color: rgba(255, 107, 53, 0.4);
}

.trust-badge.badge-users {
    border-color: rgba(255, 140, 66, 0.4);
}

.trust-badge.badge-premium {
    border-color: rgba(168, 85, 247, 0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. FLOATING ACTION BUTTON (FAB) - Menu Radial
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.fab-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border: none;
    box-shadow:
        0 8px 32px rgba(255, 107, 53, 0.4),
        0 0 60px rgba(255, 107, 53, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0a0a0a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fabPulse 2s ease-in-out infinite;
}

@keyframes fabPulse {
    0%, 100% {
        box-shadow:
            0 8px 32px rgba(0, 245, 160, 0.4),
            0 0 60px rgba(0, 245, 160, 0.2);
    }
    50% {
        box-shadow:
            0 12px 48px rgba(255, 107, 53, 0.6),
            0 0 80px rgba(255, 107, 53, 0.3);
    }
}

.fab-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fab-button:hover::before {
    opacity: 1;
}

.fab-button:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow:
        0 12px 48px rgba(255, 107, 53, 0.6),
        0 0 100px rgba(255, 107, 53, 0.4);
}

.fab-button:active {
    transform: scale(0.95) rotate(90deg);
}

.fab-button.active {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    transform: rotate(45deg);
}

/* Menu radial */
.fab-menu {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.fab-menu-item {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FF6B35;
    cursor: pointer;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: all;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 107, 53, 0.2);
}

.fab-menu.active .fab-menu-item {
    opacity: 1;
    transform: scale(1);
}

/* Positions for radial menu (5 items in arc) */
.fab-menu-item:nth-child(1) {
    bottom: 90px;
    right: 8px;
    transition-delay: 0.05s;
}

.fab-menu-item:nth-child(2) {
    bottom: 70px;
    right: 70px;
    transition-delay: 0.1s;
}

.fab-menu-item:nth-child(3) {
    bottom: 30px;
    right: 100px;
    transition-delay: 0.15s;
}

.fab-menu-item:nth-child(4) {
    bottom: -20px;
    right: 100px;
    transition-delay: 0.2s;
}

.fab-menu-item:nth-child(5) {
    bottom: -50px;
    right: 60px;
    transition-delay: 0.25s;
}

.fab-menu-item:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.8);
    box-shadow:
        0 6px 30px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(255, 107, 53, 0.4);
    transform: scale(1.15);
}

/* Tooltip para FAB items */
.fab-menu-item::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.95);
    color: #FF6B35;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.fab-menu-item:hover::after {
    opacity: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. TOAST NOTIFICATIONS - Sistema de Notificações
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 12px;
    padding: 16px 24px;
    min-width: 320px;
    max-width: 420px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 107, 53, 0.2);
    pointer-events: all;
    animation: toastSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

@keyframes toastSlideIn {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.toast.removing {
    animation: toastSlideOut 0.3s ease-in forwards;
}

@keyframes toastSlideOut {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
    }
}

/* Progress bar */
.toast::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #FF8C42);
    width: 100%;
    transform-origin: left;
    animation: toastProgress 5s linear forwards;
}

@keyframes toastProgress {
    0% { transform: scaleX(1); }
    100% { transform: scaleX(0); }
}

.toast-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px currentColor);
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.toast-message {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    color: #FF6B35;
    transform: scale(1.2);
}

/* Toast variants */
.toast.toast-success {
    border-color: rgba(255, 107, 53, 0.6);
}

.toast.toast-success .toast-icon {
    color: #FF6B35;
}

.toast.toast-info {
    border-color: rgba(255, 140, 66, 0.6);
}

.toast.toast-info .toast-icon {
    color: #FF8C42;
}

.toast.toast-warning {
    border-color: rgba(255, 159, 58, 0.6);
}

.toast.toast-warning .toast-icon {
    color: #ff9f3a;
}

.toast.toast-error {
    border-color: rgba(239, 68, 68, 0.6);
}

.toast.toast-error .toast-icon {
    color: #ef4444;
}

.toast.toast-premium {
    border-color: rgba(255, 140, 66, 0.6);
}

.toast.toast-premium .toast-icon {
    color: #FF8C42;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. MODAL OVERLAYS - Modais com Blur e Animações
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.premium-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.premium-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.premium-modal {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px) saturate(200%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.8),
        0 0 120px rgba(255, 107, 53, 0.2),
        inset 0 0 80px rgba(255, 107, 53, 0.05);
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.premium-modal-overlay.active .premium-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Animated border glow */
.premium-modal::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #FF6B35, #FF8C42, #FF6B35, #FF8C42);
    background-size: 300% 300%;
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    animation: modalBorderGlow 4s ease infinite;
}

@keyframes modalBorderGlow {
    0%, 100% { background-position: 0% 50%; opacity: 0.3; }
    50% { background-position: 100% 50%; opacity: 0.6; }
}

.premium-modal:hover::before {
    opacity: 0.8;
}

.premium-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.premium-modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FF6B35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    margin: 0;
}

.premium-modal-close {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
    color: #ef4444;
    transform: rotate(90deg) scale(1.1);
}

.premium-modal-body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.premium-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.premium-modal-button {
    padding: 12px 32px;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.premium-modal-button-primary {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: #0a0a0a;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.premium-modal-button-primary:hover {
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
    transform: translateY(-2px) scale(1.05);
}

.premium-modal-button-secondary {
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.4);
    color: #FF6B35;
}

.premium-modal-button-secondary:hover {
    background: rgba(0, 245, 160, 0.1);
    border-color: rgba(255, 107, 53, 0.6);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. TOOLTIPS - Tech-Style Tooltips Personalizados
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

[data-tech-tooltip] {
    position: relative;
    cursor: help;
}

[data-tech-tooltip]::before {
    content: attr(data-tech-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    color: #FF6B35;
    padding: 12px 20px;
    border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid rgba(255, 107, 53, 0.4);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 107, 53, 0.3);
    z-index: 10001;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
}

[data-tech-tooltip]::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid rgba(255, 107, 53, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10001;
}

[data-tech-tooltip]:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

[data-tech-tooltip]:hover::after {
    opacity: 1;
}

/* Tooltip positions */
[data-tech-tooltip][data-tooltip-position="top"]::before {
    bottom: calc(100% + 12px);
    top: auto;
}

[data-tech-tooltip][data-tooltip-position="bottom"]::before {
    top: calc(100% + 12px);
    bottom: auto;
    transform: translateX(-50%) translateY(5px);
}

[data-tech-tooltip][data-tooltip-position="bottom"]:hover::before {
    transform: translateX(-50%) translateY(0);
}

[data-tech-tooltip][data-tooltip-position="bottom"]::after {
    top: calc(100% + 2px);
    bottom: auto;
    border-top: none;
    border-bottom: 10px solid rgba(255, 107, 53, 0.4);
}

[data-tech-tooltip][data-tooltip-position="left"]::before {
    left: auto;
    right: calc(100% + 12px);
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) translateX(-5px);
}

[data-tech-tooltip][data-tooltip-position="left"]:hover::before {
    transform: translateY(-50%) translateX(0);
}

[data-tech-tooltip][data-tooltip-position="right"]::before {
    left: calc(100% + 12px);
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) translateX(5px);
}

[data-tech-tooltip][data-tooltip-position="right"]:hover::before {
    transform: translateY(-50%) translateX(0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE DESIGN
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
    .trust-badges-container {
        gap: 16px;
        padding: 30px 15px;
    }

    .trust-badge {
        min-width: 150px;
        padding: 20px 24px;
    }

    .badge-icon {
        font-size: 36px;
    }

    .badge-title {
        font-size: 16px;
    }

    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .fab-button {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .fab-menu-item {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .toast-container {
        right: 10px;
        left: 10px;
        top: 80px;
    }

    .toast {
        min-width: auto;
        max-width: 100%;
    }

    .premium-modal {
        padding: 30px 20px;
        margin: 10px;
    }

    .premium-modal-title {
        font-size: 22px;
    }

    [data-tech-tooltip]::before {
        font-size: 12px;
        padding: 8px 14px;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LIGHT THEME ADJUSTMENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

[data-theme="light"] .trust-badge {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 107, 53, 0.4);
}

[data-theme="light"] .badge-title {
    color: #FF6B35;
}

[data-theme="light"] .badge-description {
    color: rgba(0, 0, 0, 0.8);
}

[data-theme="light"] .fab-button {
    box-shadow:
        0 8px 32px rgba(255, 107, 53, 0.3),
        0 0 60px rgba(255, 107, 53, 0.15);
}

[data-theme="light"] .fab-menu-item {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 107, 53, 0.4);
    color: #FF6B35;
}

[data-theme="light"] .toast {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 107, 53, 0.5);
}

[data-theme="light"] .toast-title {
    color: #0a0a0a;
}

[data-theme="light"] .toast-message {
    color: rgba(0, 0, 0, 0.8);
}

[data-theme="light"] .premium-modal {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 107, 53, 0.4);
}

[data-theme="light"] .premium-modal-title {
    color: #FF6B35;
}

[data-theme="light"] .premium-modal-body {
    color: rgba(0, 0, 0, 0.9);
}

[data-theme="light"] [data-tech-tooltip]::before {
    background: rgba(255, 255, 255, 0.98);
    color: #FF6B35;
    border-color: rgba(255, 107, 53, 0.5);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   END OF PREMIUM ELEMENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
