@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Reset e Base */
html, body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

/* Sistema de Notificações */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.notification {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
    min-width: 320px;
}

.notification.hiding {
    animation: slideOut 0.3s ease-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.notification-success .notification-icon {
    background: #10B981;
    color: white;
}

.notification-error .notification-icon {
    background: #EF4444;
    color: white;
}

.notification-warning .notification-icon {
    background: #F59E0B;
    color: white;
}

.notification-info .notification-icon {
    background: #BA431C;
    color: white;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.notification-success .notification-title {
    color: #10B981;
}

.notification-error .notification-title {
    color: #EF4444;
}

.notification-warning .notification-title {
    color: #F59E0B;
}

.notification-info .notification-title {
    color: #BA431C;
}

.notification-message {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.4;
}

.notification-close {
    flex-shrink: 0;
    cursor: pointer;
    color: #9CA3AF;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #4B5563;
}

/* Responsivo */
@media (max-width: 640px) {
    #notification-container {
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .notification {
        min-width: auto;
        width: 100%;
    }
}

/* Sidebar & Mobile Navigation */
.sidebar {
    width: 280px;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    max-width: 100%;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .main-content {
        margin-left: 0;
        padding-bottom: 0;
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .main-content > main {
        padding-bottom: 150px !important;
        min-height: calc(100vh - 70px);
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        height: 70px;
        align-items: center;
        justify-content: space-around;
        padding: 0 10px;
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 8px 12px;
        border-radius: 12px;
        text-decoration: none;
        color: #6B7280;
        transition: all 0.2s;
        flex: 1;
        max-width: 100px;
    }
    
    .mobile-nav-item:hover,
    .mobile-nav-item.active {
        color: #2563eb;
        background: rgba(37, 99, 235, 0.1);
    }
    
    .mobile-nav-item svg {
        width: 20px;
        height: 20px;
    }
    
    .mobile-nav-item span {
        font-size: 11px;
        font-weight: 500;
    }

    /* Popover de Mais (abre para cima) */
    #mobile-more-menu {
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    #mobile-more-menu .feather,
    #mobile-more-menu svg {
        width: 20px;
        height: 20px;
    }
}

/* Thumbs dos documentos na landing */
.doc-thumb {
    width: 96px;
    height: 96px;
}

/* Modal de Confirmação */
#confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

#confirm-modal.show {
    display: flex;
}

.confirm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.2s ease-out;
}

.confirm-content {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    animation: scaleIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.confirm-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.confirm-icon.danger {
    background: #FEE2E2;
    color: #EF4444;
}

.confirm-icon.warning {
    background: #FEF3C7;
    color: #F59E0B;
}

.confirm-icon.info {
    background: #DBEAFE;
    color: #3B82F6;
}

.confirm-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    text-align: center;
}

.confirm-message {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 24px;
}

.confirm-buttons {
    display: flex;
    gap: 12px;
}

.confirm-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.confirm-btn-cancel {
    background: #F3F4F6;
    color: #374151;
}

.confirm-btn-cancel:hover {
    background: #E5E7EB;
}

.confirm-btn-confirm {
    background: #EF4444;
    color: white;
}

.confirm-btn-confirm:hover {
    background: #DC2626;
}

.confirm-btn-confirm.warning {
    background: #F59E0B;
}

.confirm-btn-confirm.warning:hover {
    background: #D97706;
}

.confirm-btn-confirm.info {
    background: #3B82F6;
}

.confirm-btn-confirm.info:hover {
    background: #2563EB;
}


/* Landing */

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* New Before-After Slider Styles */  
.slider-container {
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    border-radius: 0.7rem;
    overflow: hidden;
}

/* Altura reduzida para dispositivos móveis */
@media (max-width: 768px) {
    .slider-container {
        height: 300px;
    }
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Styling the Before/After text */
.before-text,
.after-text {
    position: absolute;
    font-family: system-ui;
    font-size: 14px;
    font-weight: 600;
    color: #3a3a3a;
    z-index: 4;
    padding: 10px 20px;
    background-color: #ffffff9e;
    border-radius: 0.3rem;
    letter-spacing: 2px;
    transition: opacity 0.3s ease-in-out;
}

/* Before text */
.before-text {
    left: 20px;
    top: 20px;
    z-index: 5;
}

/* After text */
.after-text {
    right: 20px;
    top: 20px;
    z-index: 3;
}

/* Hide the After text initially */
.after-image .after-text {
    visibility: visible;
    z-index: 3;
}

.after-image {
    clip-path: inset(0 0 0 50%);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0px;
    height: 100%;
    background-color: #fff;
    cursor: pointer;
    z-index: 9999;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    z-index: 1;
}

.pulse-container {
    position: relative;
    display: inline-block;
}

.pulse-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffffff;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.slider-line svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    cursor: pointer;
}

/* Prevent text/image selection while dragging */
.slider-container,
.before-image img,
.after-image img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Garantir que as imagens preencham todo o container e mantenham a proporção */
.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-handle,
.slider-line {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Photo Quantity Slider Styles */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

input[type="range"]::-webkit-slider-track {
    background: linear-gradient(to right, #BA431C 0%, #BA431C 100%);
    height: 8px;
    border-radius: 4px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #BA431C;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(186, 67, 28, 0.4);
    transition: all 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(186, 67, 28, 0.6);
}

input[type="range"]::-moz-range-track {
    background: linear-gradient(to right, #BA431C 0%, #BA431C 100%);
    height: 8px;
    border-radius: 4px;
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #BA431C;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(186, 67, 28, 0.4);
    transition: all 0.2s ease;
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(186, 67, 28, 0.6);
}

/* Remove outline from all inputs */
input,
textarea,
select {
    outline: 0;
}

input:focus,
textarea:focus,
select:focus {
    outline: 0;
}

/* ---------------------------------------------
   Design System — Identifica Landing
   Tokens e componentes reutilizáveis
---------------------------------------------- */
:root {
    --brand-500: #27B8ED; /* primary */
    --brand-600: #1998c5; /* hover/darker */
    --accent-400: #fbbf24;
    --surface: #ffffff;
    --surface-muted: #f8fafc;
    --text-900: #0f172a;
    --text-700: #334155;
    --text-500: #64748b;
    --radius-card: 16px;
    --shadow-soft: 0 10px 28px rgba(2, 6, 23, 0.06);
}

.container-xl {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.title-xl {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text-900);
}

.subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: var(--text-700);
}

.statline {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-900);
}

.badge {
    background: #fef9c3;
    color: #a16207;
    border-radius: 999px;
    padding: .35rem .75rem;
    font-weight: 600;
    display: inline-block;
}

/* Badge com cor do logo (amarelo forte) */
.badge-accent {
    background: rgba(251, 191, 36, 0.12);
    border: 2px solid var(--accent-400);
    color: #111827;
    border-radius: 999px;
    padding: .45rem .95rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.18);
}

/* No hero escuro, priorizar legibilidade e reduzir peso visual */
.hero-black .badge-accent {
    color: #f9fafb;
    box-shadow: 0 6px 18px rgba(251, 191, 36, 0.22);
}

/* Utilitário para texto com a cor de destaque do logo */
.text-accent { color: var(--accent-400); }
/* Texto na cor principal (azul da marca) */
.text-brand { color: var(--brand-500); }

/* Links com cor secundária da marca */
.link-secondary { color: var(--brand-600); }
.link-secondary:hover { color: var(--brand-500); }

.btn-primary {
    background-color: var(--primary-color, var(--brand-500));
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    padding: .75rem 1.25rem;
    box-shadow: 0 8px 20px rgba(39, 184, 237, .22);
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
    background-color: var(--secondary-color, var(--brand-600));
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(25, 152, 197, .28);
}

.segmented-active {
    background-color: var(--primary-color, var(--brand-500)) !important;
    color: #ffffff !important;
}

.segmented-active:hover {
    background-color: var(--secondary-color, var(--brand-600));
}

.input-field:focus {
    border-color: var(--primary-color);
    outline: none;
}

.card {
    background: var(--surface);
    border: 1px solid rgba(2, 6, 23, 0.06);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.card-doc {
    background: var(--surface);
    border: 1px solid rgba(2, 6, 23, 0.05);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
    transition: transform .2s ease, box-shadow .2s ease;
}

/* Grid do Instagram: tiles quadrados com hover sutil */
.insta-grid img {
    aspect-ratio: 1 / 1;
    transition: transform .2s ease, box-shadow .2s ease;
}
.insta-grid img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.08);
}

/* Marca da Vivo quando o logo não estiver disponível */
.vivo-mark {
    font-weight: 800;
    font-size: 2.2rem;
    color: #7c3aed; /* roxo Vivo */
    letter-spacing: .5px;
}
.card-doc:hover { box-shadow: 0 12px 28px rgba(2, 6, 23, 0.10); transform: translateY(-1px); }
.card-doc .thumb { height: 72px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(2, 6, 23, 0.07)); }
@media (min-width: 768px) { .card-doc .thumb { height: 84px; } }
.card-doc h3 { font-weight: 700; color: var(--text-900); margin-top: .35rem; }
.card-doc p { color: var(--text-600); font-size: .95rem; line-height: 1.5; }

.hero-bg {
    background-image: linear-gradient(135deg, #eef6ff 0%, #ffffff 40%, #fff7e6 100%);
}

.verify-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid rgba(2, 6, 23, 0.08);
    color: var(--text-700);
    border-radius: 999px;
    padding: .35rem .75rem;
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
}

/* Imagens dos blocos de detalhes: tamanho mais contido e responsivo */
.doc-detail-img {
    max-height: clamp(160px, 24vw, 260px);
    max-width: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}
@media (min-width: 1024px) {
    .doc-detail-img { max-height: 260px; }
}

/* Container visual para imagens de detalhes (mais clean) */
.doc-figure {
    background: var(--surface-muted);
    border: 1px solid rgba(2, 6, 23, 0.08);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

/* Itens de recursos (mais clean e profissional) */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--surface);
    border: 1px solid rgba(2, 6, 23, 0.08);
    border-radius: 12px;
    padding: 1rem;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.feature-item:hover {
    border-color: rgba(2, 6, 23, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
}
.feature-icon {
    height: 28px;
    width: 28px;
    border-radius: 999px;
    background: rgba(39, 184, 237, 0.12);
    color: var(--brand-600);
    border: 1px solid rgba(39, 184, 237, 0.28);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-title { color: var(--text-900); font-weight: 600; }
.feature-desc { color: var(--text-500); font-size: .9rem; }

/* Fundo único (hero + navbar) para Black Friday */
.dark-top {
    position: relative;
    isolation: isolate;
    /* Base azul ainda mais escura (similar ao cadastro) */
    background: linear-gradient(180deg, #040404 0%, #0d0e0e 100%);
}
/* Overlay do pattern para efeito sutil sobre o azul */
.dark-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/pattern-pet-dark.png');
    background-repeat: repeat;
    background-size: 440px 440px; /* ícones um pouco menores */
    background-position: top left;
    opacity: 0.22; /* intensidade do pattern */
    mix-blend-mode: soft-light; /* efeito semelhante ao exemplo */
    pointer-events: none;
    z-index: 0;
}
/* Garantir que o conteúdo fique acima do overlay */
.dark-top > * { position: relative; z-index: 1; }

/* Tamanhos responsivos para telas maiores */
@media (min-width: 768px) {
  .dark-top::before { background-size: 560px 560px; }
}
@media (min-width: 1280px) {
  .dark-top::before { background-size: 680px 680px; }
}
/* Hero fica transparente para herdar o fundo do wrapper */
.hero-black { background-color: transparent; }
.hero-black h1,
.hero-black h2 { color: #ffffff; }
.hero-black p { color: #e5e7eb; }
.hero-black .verify-chip {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.18);
    color: #e5e7eb;
}
.hero-black .verify-chip .text-green-600 { color: #22c55e; }

/* Navbar fica transparente para herdar o fundo do wrapper */
.navbar-black {
    background-color: transparent;
}
.navbar-black nav a { color: #e5e7eb; }
.navbar-black nav a:hover { color: var(--accent-400); }
.navbar-black .login-btn {
    background-color: transparent;
    border: 2px solid var(--brand-500);
    color: var(--brand-500);
    border-radius: 0.5rem; /* match Tailwind rounded-lg */
    font-weight: 700;
    box-shadow: none;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.navbar-black .login-btn:hover {
    background-color: var(--brand-500);
    color: #ffffff;
    border-color: var(--brand-600);
    box-shadow: 0 6px 20px rgba(39, 184, 237, .28);
    transform: translateY(-1px);
}
.navbar-black .login-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(39, 184, 237, .35);
}

.brand-top {
    position: relative;
    isolation: isolate;
    background: linear-gradient(180deg, rgba(39,184,237,0.18) 0%, rgba(255,255,255,1) 65%);
}
.brand-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/pattern-pet-dark.png');
    background-repeat: repeat;
    background-size: 440px 440px;
    background-position: top left;
    opacity: 0.05;
    mix-blend-mode: normal;
    pointer-events: none;
    z-index: 0;
}
.brand-top > * { position: relative; z-index: 1; }
@media (min-width: 768px) { .brand-top::before { background-size: 560px 560px; } }
@media (min-width: 1280px) { .brand-top::before { background-size: 680px 680px; } }

/* Botão de destaque (amarelo) reutilizável */
.btn-accent {
    background-color: var(--accent-400);
    color: #111827;
    border-radius: 12px;
    font-weight: 700;
    padding: .6rem 1rem;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.25);
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.btn-accent:hover {
    background-color: #f59e0b;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(251, 191, 36, 0.35);
}

/* Overrides de cores antigas (Tailwind) para padronizar botões com o primary */
.bg-blue-600,
.bg-blue-500,
.bg-\[\#2563eb\],
.bg-\[\#007bff\] {
    background-color: var(--brand-500) !important;
    color: #ffffff !important;
}
.hover\:bg-blue-700:hover,
.hover\:bg-\[\#1d4ed8\]:hover,
.hover\:bg-\[\#0056b3\]:hover {
    background-color: var(--brand-600) !important;
}
/* Separador ondulado no final do hero */
.wave-bottom { line-height: 0; }
.wave-bottom svg { display: block; width: 100%; height: 64px; }
@media (min-width: 768px) { .wave-bottom svg { height: 84px; } }
@media (min-width: 1024px) { .wave-bottom svg { height: 104px; } }

/* Onda no topo antes do footer */
.wave-top { line-height: 0; position: relative; margin-top: -56px !important; overflow: hidden; }
.wave-top svg { display: block; width: 100%; height: 120px; transform: translateY(-2px) scaleY(-1); transform-origin: center; }
@media (min-width: 768px) {
  .wave-top { margin-top: -72px !important; }
  .wave-top svg { height: 160px; }
}
@media (min-width: 1024px) {
  .wave-top { margin-top: -96px !important; }
  .wave-top svg { height: 200px; }
}

/* Variante: inverter horizontalmente a onda do topo */
.wave-top.flip-x svg { transform: translateY(-2px) scaleX(-1) scaleY(-1); }

/* Footer escuro com o mesmo visual do header */
.footer-black {
    position: relative;
    isolation: isolate;
    background: linear-gradient(180deg, #040404 0%, #101010 100%);
}
.footer-black::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/pattern-pet-dark.png');
    background-repeat: repeat;
    background-size: 440px 440px;
    background-position: top left;
    opacity: 0.18;
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 0;
}
.footer-black > * { position: relative; z-index: 1; }
.footer-black a { color: #e5e7eb; }
.footer-black a:hover { color: var(--accent-400); }
