/* --- PROFESSIONAL TYPOGRAPHY SYSTEM --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    
    --zinc-800: #27272a;
    --zinc-900: #18181b;
    --zinc-950: #09090b;

    --brand-red: #e11d48; /* Ruby Red */
    --brand-red-hover: #fb2c5a; /* Lighter/Vibrant red for hover */
    --green-600: #10b981;
    --white: #ffffff;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;

    /* Legacy Checkout Variables */
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-600: #d97706;
    --amber-900: #78350f;
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-200: #fecaca;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-sans: 'Outfit', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.5);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.7);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.8);
}

/* VSL Video Section */
.vsl-square-section {
    padding: 3.5rem 0;
    background: var(--zinc-950);
    border-bottom: 1px solid var(--slate-800);
}

.square-video-container {
    max-width: 320px;
    /* Ajuste para equilibrar tamanho e visibilidade */
    margin: 0 auto;
}

.square-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* Ratio 1:1 */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #000;
}

.square-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    transform: scale(1.04);
    /* Pequeno zoom para "matar" qualquer borda preta do arquivo de vídeo */
    filter: brightness(1.02);
    /* Leve realce para combinar melhor com o fundo claro */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    position: relative;
    max-width: 100%;
}

body {
    background-color: var(--zinc-950);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
}

/* Fix for mobile horizontal scroll when keyboard opens */
body.modal-open {
    overflow: hidden !important;
    /* Do NOT use position:fixed here - it breaks scroll position */
    /* touch-action prevents touchmove events from scrolling the background */
    touch-action: none;
    -webkit-overflow-scrolling: auto;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 56rem;
    /* max-w-4xl */
    margin: 0 auto;
    padding: 0 1rem;
}

/* --- Navigation --- */
header.sticky {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(9, 9, 11, 0.85); /* Zinc 950 with transparency */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-800);
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-area i {
    color: var(--brand-red);
    font-size: 1.5rem;
}

.logo-area h1 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}

/* --- Buttons --- */
.btn-primary {
    background: var(--brand-red);
    color: var(--white);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: var(--brand-red-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
}

.btn-primary:active {
    background: var(--brand-red) !important;
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(225, 29, 72, 0.2);
}

.hidden {
    display: none !important;
}

.btn-large {
    font-size: 1rem;
    padding: 14px 28px;
    width: auto;
    min-width: 200px;
    box-shadow: 0 8px 18px rgba(225, 29, 72, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--slate-700);
    color: var(--white);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--slate-800);
    border-color: var(--slate-600);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    text-align: center;
    padding: 6rem 0 4rem;
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(0, 0, 0, 0.5)), url('hero-mura-bg.png');
    background-size: cover;
    background-position: center 20%;
    background-attachment: fixed;
    color: #fff !important;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
}

/* Fix for iOS and Mobile: Safari/iOS has bugs with background-attachment: fixed */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll !important;
    }
}

/* Force readability for headings and text inside hero on photographic background */
.hero h1,
.hero h2,
.hero h2 span,
.hero p,
.hero b,
.hero strong,
.hero span:not([class*="badge"]) {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1), 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-mockup {
    max-width: 320px;
    width: 100%;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.hero-mockup:hover {
    transform: translateY(-5px) scale(1.02);
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero h2 span {
    font-family: var(--font-heading);
    color: var(--red-600);
    display: block;
    margin-top: 0.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-700);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 2rem;
}

.social-proof-bar {
    background: var(--slate-900);
    padding: 2rem 0;
    border-bottom: 1px solid var(--slate-800);
}

.stat-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    flex-direction: column;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--brand-red);
}

.stat-text {
    font-size: 0.875rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--gray-700);
}

.stat-text strong {
    display: block;
    font-size: 1.125rem;
    color: var(--white);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge i {
    color: var(--green-600);
    font-size: 1.25rem;
}

/* --- Cards --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.grid-2-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.card {
    background: rgba(30, 41, 59, 0.4); /* Slate 800 with transparency */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.card:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.icon-circle {
    width: 3.5rem;
    height: 3.5rem;
}

.icon-circle i {
    color: var(--brand-red);
    font-size: 1.5rem;
}

.card h4 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--slate-400);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Section Dividers --- */
.bg-white {
    background: var(--zinc-950);
}

.border-t-amber {
    border-top: 1px solid var(--slate-800);
}

.bg-amber-50 {
    background: var(--zinc-950);
}

/* --- Lists --- */
.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.list-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.list-item i {
    color: var(--brand-red);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.list-item p {
    color: var(--gray-800);
    font-weight: 500;
}

/* --- Testimonials Slider V2 - REFINED (Dark Luxury) --- */
.testimonial-slider-v2 {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.45) !important; /* Elegant slate with transparency */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    overflow: hidden;
    position: relative;
}

.testimonial-carousel {
    position: relative;
    width: 100%;
    min-height: 200px;
    margin: 0 auto;
}

.star-rating {
    color: #facc15;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid rgba(225, 29, 72, 0.5) !important;
    display: block;
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.3) !important;
}

.testimonial-card-single {
    background: transparent !important; /* Let the container handle the background */
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: left;
}

/* --- Authority Section --- */
.authority-grid {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 2rem 0;
}

.authority-img {
    flex: 1;
    max-width: 400px;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.authority-content {
    flex: 1.5;
}

.authority-content h3 {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.authority-content p {
    color: var(--slate-400);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.authority-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.auth-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--gray-800);
}

.auth-badge i {
    color: var(--red-600);
}

/* --- Guarantee --- */
.guarantee-section {
    background: var(--zinc-950) !important;
    border-top: 1px solid var(--slate-800);
    text-align: center;
    padding: 5rem 0;
}

.shield-icon {
    font-size: 4rem;
    color: var(--brand-red);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 10px rgba(225, 29, 72, 0.2));
}

.guarantee-section h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.guarantee-section p {
    color: var(--slate-600);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Urgency --- */
.urgency-bar {
    background: var(--brand-red);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), transparent);
}

.urgency-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.urgency-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.urgency-price {
    font-size: 1.5rem;
    font-weight: 700;
}

/* --- Checkout Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Use dvh (dynamic viewport height) which adjusts for keyboard; fallback to 100vh */
    height: 100dvh;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
    /* Prevent the overlay itself from scrolling horizontally */
    box-sizing: border-box;
    max-width: 100vw;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 28rem;
    padding: 1.5rem;
    border-radius: 1rem;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 1rem auto;  /* reduced top margin on mobile */
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    will-change: transform;
    /* Absolutely prevent any content from overflowing horizontally */
    overflow-x: hidden;
    box-sizing: border-box;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* Mobile-specific checkout fixes */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 0;
        align-items: stretch;
    }

    .modal-content {
        border-radius: 20px 20px 0 0;
        margin: auto 0 0 0;  /* snap to bottom like a bottom sheet */
        max-height: 90dvh;
        max-height: 90vh;
        overflow-y: auto;
        overflow-x: hidden;
        box-sizing: border-box;
        width: 100%;
    }
}

.modal-header {
    margin-bottom: 1rem;
}

.modal-trust-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.625rem;
    background: #f0fdf4;
    /* Very light success green */
    border: 1px solid #dcfce7;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #166534;
    margin-top: 1rem;
}

.modal-trust-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-trust-info i {
    color: #22c55e;
    font-size: 0.875rem;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--slate-900); /* For white background modal */
}

.testimonial-track-original {
    color: var(--slate-100) !important;
}

.form-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--amber-800);
    margin: 1.5rem 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    transition: 0.2s;
}

.form-input:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 3px var(--amber-100);
    outline: none;
}

/* Payment Methods Top Layout */
.radio-group-top {
    margin-bottom: 1rem;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.radio-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: 0.2s;
    background: var(--white);
}

.radio-item:hover {
    border-color: var(--amber-300);
    background: var(--amber-50);
}

.radio-item.selected {
    border-color: var(--amber-600);
    background: var(--amber-50);
    box-shadow: 0 0 0 1px var(--amber-600);
}

.radio-item input {
    display: none;
}

.radio-label {
    cursor: pointer;
}

.radio-title {
    display: block;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gray-800);
}

/* Order Bump White Design */
#order-bump-area {
    margin: 1.5rem 0;
    transition: 0.3s;
}

#order-bump-area:hover {
    border-color: #d97706;
    background: #fffbeb;
}

.order-bump-checkbox {
    accent-color: #d97706;
}

.radio-desc {
    font-size: 0.6875rem;
    color: var(--gray-500);
}

.payment-flags {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.payment-flags i {
    font-size: 1.5rem;
}

.fa-cc-visa {
    color: #1a1f71;
}

.fa-cc-mastercard {
    color: #eb001b;
}

/* --- Responsive Adaptations --- */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }

    .stat-grid {
        gap: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .authority-grid {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
    }

    .authority-img {
        max-width: 120px;
        flex: 0 0 auto;
    }

    .authority-content {
        flex: 1;
    }

    .authority-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .authority-content p {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .auth-badge {
        font-size: 0.75rem;
    }

    .auth-badge {
        justify-content: flex-start;
    }
}

/* Social Proof Bar */
.social-proof-bar {
    background: #fff;
    padding: 2.5rem 0;
    border-top: 1px solid var(--amber-100);
    border-bottom: 1px solid var(--amber-100);
    margin: 2rem 0;
}

.stat-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.stat-item i {
    font-size: 2rem;
    color: var(--amber-600);
    background: var(--amber-50);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.4;
}

.stat-text strong {
    display: block;
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .social-proof-bar {
        padding: 1.5rem 0.5rem;
    }

    .stat-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 0.5rem !important;
    }

    .stat-item {
        min-width: 0 !important;
        flex: 1;
        padding-bottom: 0 !important;
        border-bottom: none !important;
        gap: 0.4rem !important;
    }

    .stat-item i {
        font-size: 1.1rem !important;
    }

    .stat-text {
        font-size: 0.65rem !important;
        line-height: 1.1;
    }

    .stat-text strong {
        font-size: 0.75rem !important;
    }

    /* Stacking rules removed to maintain horizontal layout */
}

/* --- Authority Slider (Elite Style) --- */
.authority-slider-wrapper {
    width: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.slider-track {
    display: flex;
    width: calc(300px * 12); /* 6 slides * 2 */
    animation: scroll-authority 40s linear infinite;
}

.slide {
    width: 300px;
    height: 180px;
    padding: 0 10px;
    flex-shrink: 0;
}

.slide .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: #000;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
    transition: transform 0.5s ease;
}

.slide:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: rgba(255,255,255,0.9);
    padding: 15px 10px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none;
    opacity: 0.85;
}

@keyframes scroll-authority {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 6)); }
}

/* Mobile Adjustments for Carousel */
@media (max-width: 600px) {
    .authority-slider-wrapper { padding: 15px 0; }
    .slide {
        width: 220px;
        height: 130px;
        padding: 0 6px;
    }
    .slider-track {
        width: calc(220px * 12);
    }
    .slide-label {
        font-size: 0.65rem;
        padding: 10px 5px 5px;
    }
    @keyframes scroll-authority {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-220px * 6)); }
    }
}