:root {
    --primary-color: #6927D9;
    --primary-dark: #5a1fb8;
    --secondary-color: #DFFF72;
    --accent-color: #5DFFA2;
    --success-color: #5DFFA2;
    --warning-color: #DFFF72;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Prevent horizontal overflow during loading */
img, svg, video, iframe {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Menu Mobile - CSS Forçado */
.nav-menu {
    display: none;
}

.nav-menu.active {
    display: block !important;
    position: fixed !important;
    top: 100px !important;
    left: 0 !important;
    right: 0 !important;
    background: yellow !important;
    padding: 20px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    z-index: 9999 !important;
    border: 3px solid green !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.nav-menu li {
    margin: 10px 0 !important;
    list-style: none !important;
}

.nav-menu .nav-link {
    display: block !important;
    padding: 10px 0 !important;
    color: #333 !important;
    text-decoration: none !important;
}

body {
    font-family: 'Host Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    overflow-x: hidden;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    max-width: 50%;
}

.logo-icon {
    width: 220px;
    height: 120px;
    margin-left: -20px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-shrink: 1;
    overflow-x: hidden;
}

/* Sobrescrever para mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
}


.nav-mobile-cta {
    display: none;
}

.nav-desktop-cta {
    display: inline-flex;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: color 0.3s ease;
    flex-shrink: 0;
    min-width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

/* Forçar exibição do botão em mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6927D9 0%, #5a1fb8 50%, #4a1a9e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><defs><pattern id="subtle-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><g opacity="0.08"><!-- Minimalist dots --><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="25" cy="25" r="0.8" fill="rgba(223,255,114,0.2)"/><!-- Subtle lines --><path d="M 0 15 L 30 15" stroke="rgba(255,255,255,0.1)" stroke-width="0.3" fill="none"/><path d="M 15 0 L 15 30" stroke="rgba(255,255,255,0.1)" stroke-width="0.3" fill="none"/><!-- Gentle accent --><circle cx="22" cy="8" r="0.5" fill="rgba(93,255,162,0.15)"/></g></pattern></defs><rect width="120" height="120" fill="url(%23subtle-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5.5rem 2rem 4rem 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding-top: 3.5rem;
    max-width: 100%;
}

.hero-text h1 br {
    display: none;
}

.hero-text .highlight {
    background: linear-gradient(45deg, #DFFF72, #5DFFA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
}

.platform-screenshot {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.platform-screenshot:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.screenshot-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    object-fit: contain;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: scale(1.1);
}

.feature-card:hover .feature-title {
    color: var(--primary-color);
}

.feature-card:hover .feature-description {
    color: var(--text-primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

/* AI Agents Section */
.ai-agents {
    padding: 6rem 0;
    background: white;
}

.ai-agents-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-agents-text .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.ai-agents-text .section-subtitle {
    text-align: left;
    margin-bottom: 3rem;
}

.ai-features {
    margin-bottom: 3rem;
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.ai-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.ai-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ai-feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.ai-feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.ai-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ai-agents-visual {
    position: relative;
}

.whatsapp-agent-mockup {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(5deg) rotateX(-5deg);
    transition: transform 0.3s ease;
}

.whatsapp-agent-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.agent-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--dark-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.4rem;
        padding-top: 3rem;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-container {
        padding: 4rem 2rem 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    .mobile-menu-toggle {
        flex-shrink: 0;
        padding: 0.5rem;
    }


    .nav-menu li {
        margin-bottom: 1rem;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-mobile-cta {
        display: block !important;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .nav-mobile-cta .cta-button {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .nav-desktop-cta {
        display: none !important;
    }

    .nav-menu .nav-link:hover {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }


    .logo {
        padding-left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-container {
        padding: 1.5rem 1rem 2rem 1rem;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-text h1 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
        padding-top: 1rem;
    }
    
    .hero-text h1 br {
        display: block;
    }
    
    .hero-container {
        padding: 3rem 1.5rem 4rem 1.5rem;
    }

    .hero-text p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.4rem;
        margin-top: 0.75rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .ai-agents-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .ai-agents-text .section-title {
        text-align: center;
    }

    .ai-agents-text .section-subtitle {
        text-align: center;
    }

    .ai-feature {
        flex-direction: column;
        text-align: center;
    }

    .ai-cta {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        padding-top: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-container {
        padding: 3.5rem 1rem 4rem 1rem;
    }
}

@media (max-width: 500px) {
    .nav-container {
        padding: 0 0.75rem;
        height: 60px;
    }
    
    .logo {
        padding-left: 0.3rem;
    }
    
    .logo-icon {
        width: 125px;
        height: 70px;
    }
    
    .mobile-menu-toggle {
        padding: 0.5rem;
        margin-right: 0;
        font-size: 1.2rem;
        min-width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu {
        left: 1rem;
        right: 1rem;
        padding: 2rem 1rem;
        margin: 0;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu li {
        margin-bottom: 0.75rem;
    }
    
    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    .nav-mobile-cta {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .nav-mobile-cta .cta-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
        padding-top: 3rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-container {
        padding: 4rem 1rem 4rem 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 260px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        padding-top: 3.5rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        max-width: 240px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .hero-container {
        padding: 4.5rem 0.75rem 4rem 0.75rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Very small screens in portrait */
@media (max-width: 320px) {
    .hero-text h1 {
        font-size: 1.4rem;
        line-height: 1.2;
        padding-top: 4rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-text p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        max-width: 220px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .hero-container {
        padding: 5rem 0.5rem 4rem 0.5rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Prevent overflow during AOS animations */
[data-aos] {
    overflow: hidden;
    max-width: 100%;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
