/* ========================================
   PayLin Landing Page Styles
   Paleta: Azul escuro profundo + Verde + Ciano
   ======================================== */

/* CSS Variables - Cores da PayLin */
:root {
    /* Cores principais */
    --color-bg-primary: #0b0c10;
    /* Darker, more gray/neutral */
    --color-bg-secondary: #111418;
    --color-bg-card: rgba(17, 20, 24, 0.8);
    --color-bg-glass: rgba(11, 12, 16, 0.85);

    /* Cores de destaque */
    --color-accent: #4ade80;
    --color-accent-hover: #22c55e;
    --color-accent-glow: rgba(74, 222, 128, 0.15);
    /* Reduced glow opacity */
    --color-cyan: #22d3ee;
    --color-cyan-glow: rgba(34, 211, 238, 0.1);
    /* Reduced glow opacity */

    /* Cores de texto */
    --color-text-primary: #ffffff;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;

    /* Bordas */
    --color-border: rgba(74, 222, 128, 0.2);
    --color-border-subtle: rgba(148, 163, 184, 0.1);

    /* Fontes */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Bordas arredondadas */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transições */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Grid Pattern */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(74, 222, 128, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

/* Add cyan light effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 600px;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, var(--color-cyan-glow) 0%, transparent 70%),
        radial-gradient(ellipse 60% 30% at 30% 10%, rgba(74, 222, 128, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 60% 30% at 70% 10%, rgba(34, 211, 238, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--color-accent);
}

.text-center {
    text-align: center;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 0.6rem 0.75rem;
    /* Increased padding for larger header */
    transition: var(--transition-normal);
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    width: auto;
    /* Fit content */
    max-width: 95%;
    min-width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Top green glow spotlight */
.navbar::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 20%;
    width: 200px;
    height: 100px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.8;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.85);
    border-color: rgba(74, 222, 128, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    top: 16px;
    /* Slightly animate up on scroll */
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    width: 100%;
    margin: 0;
    padding: 0 1.25rem;
    /* Increased horizontal padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: auto;
}

.logo-icon-img {
    height: 40px;
    /* Increased logo size */
    width: auto;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 5px rgba(74, 222, 128, 0.3));
}

/* ... existing logo styles ... */

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Increased gap between links */
    list-style: none;
    margin: 0 2rem;
    /* Increased side margins */
    position: static;
    /* Reset absolute positioning */
    transform: none;
}

.nav-links a {
    color: #e2e8f0;
    /* Light text */
    text-decoration: none;
    font-size: 1rem;
    /* Increased font size */
    font-weight: 500;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-links a::after {
    display: none;
    /* Remove underline, use opacity/color for hover */
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-links a:hover {
    color: var(--color-text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Compact Header Tweaks */
.compact-btn {
    padding: 0.55rem 1.25rem !important;
    /* Increased button padding */
    font-size: 0.95rem !important;
    /* Increased button font size */
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    /* Increased gap between buttons */
    margin-left: 0;
}

/* Redefine Navbar Login Button specific style */
.nav-buttons .btn-outline {
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.nav-buttons .btn-primary {
    /* Keep "Criar Conta" prominent or maybe hide it if strict adherence to image (Image only showed Login) */
    /* Let's keep it but make it smaller/complementary */
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* Responsive Hide */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .navbar {
        width: 95%;
        padding: 0.5rem;
        border-radius: 20px;
        /* Slightly less round on mobile? or keep it */
    }
}

/* Original Buttons (Generic) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

/* ... existing shimmer effects ... */
.btn-primary {
    --shimmer-color: rgba(255, 255, 255, 0.8);
    --shimmer-speed: 3s;
    background: linear-gradient(135deg, var(--color-accent), #22c55e);
    color: var(--color-bg-primary);
    box-shadow: 0 4px 15px var(--color-accent-glow);
    z-index: 0;
}

/* ... keep shimmer styles ... */
/* Shimmer spark container */
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    z-index: -2;
}

/* Shimmer spark effect */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    background: conic-gradient(from 270deg,
            transparent 0deg,
            var(--shimmer-color) 45deg,
            transparent 90deg);
    animation: shimmer-spin 3s linear infinite;
    z-index: -1;
}

/* Inner background layer */
.btn-primary>span:first-child::before {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: linear-gradient(135deg, var(--color-accent), #22c55e);
    border-radius: inherit;
    z-index: -1;
}

@keyframes shimmer-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Alternative shimmer slide effect */
@keyframes shimmer-slide {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(200%) rotate(45deg);
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-accent-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Inner highlight effect */
.btn-primary .btn-highlight {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 -8px 10px rgba(255, 255, 255, 0.12);
    transition: var(--transition-normal);
    pointer-events: none;
}

.btn-primary:hover .btn-highlight {
    box-shadow: inset 0 -6px 10px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: var(--color-bg-card);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect for secondary buttons */
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(74, 222, 128, 0.2),
            transparent);
    animation: shimmer-slide-secondary 4s ease-in-out infinite;
}

@keyframes shimmer-slide-secondary {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 200%;
    }
}

.btn-secondary:hover {
    background: rgba(74, 222, 128, 0.1);
    border-color: var(--color-accent);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border-subtle);
}

.btn-outline:hover {
    color: var(--color-text-primary);
    border-color: var(--color-accent);
    background: rgba(74, 222, 128, 0.05);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition-normal);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--color-border-subtle);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.mobile-nav-links li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-border-subtle);
}

.mobile-nav-links a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 1.1rem;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px var(--container-padding) var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--color-cyan-glow) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.hero-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-cyan));
    border-radius: var(--radius-md);
    box-shadow: 0 0 40px var(--color-accent-glow);
}

.hero-logo-icon svg {
    width: 48px;
    height: 48px;
}

.hero-logo-icon svg path,
.hero-logo-icon svg rect {
    stroke: var(--color-bg-primary);
}

.hero-logo-text {
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-text-primary);
}

.hero-logo-text .highlight {
    font-weight: 600;
    font-style: normal;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.highlight-box {
    display: inline;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(34, 211, 238, 0.2));
    padding: 0.1em 0.4em;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hero-buttons .btn {
    min-width: 190px;
    height: 56px;
    border-radius: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #0b0c10;
    border: none;
    box-shadow: 0 10px 30px -5px rgba(74, 222, 128, 0.4);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(74, 222, 128, 0.6);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
    z-index: 10;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-muted);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateY(6px);
    }
}

/* ========================================
   Sections Common Styles
   ======================================== */
/* ========================================
   Sections Common Styles
   ======================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(74, 222, 128, 0.08);
    border-radius: 100px;
    border: 1px solid rgba(74, 222, 128, 0.15);
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: white;
    letter-spacing: -0.02em;
}

.section-header p:not(.section-subtitle) {
    margin-top: 16px;
    font-size: 1.1rem;
    color: rgba(148, 163, 184, 0.8);
    line-height: 1.6;
}

/* ========================================
   Solutions/Features Section
   ======================================== */
.solutions {
    background: linear-gradient(180deg, transparent 0%, var(--color-bg-secondary) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

/* ========================================
   Glowing Border Effect
   ======================================== */
.glow-card {
    --glow-x: 50%;
    --glow-y: 50%;
    --glow-opacity: 0;
    --glow-color-1: #4ade80;
    --glow-color-2: #22d3ee;
    --glow-color-3: #6366f1;
    position: relative;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    isolation: isolate;
}

/* Outer glow border container */
.glow-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(from var(--glow-angle, 0deg) at var(--glow-x) var(--glow-y),
            var(--glow-color-1) 0deg,
            var(--glow-color-2) 120deg,
            var(--glow-color-3) 240deg,
            var(--glow-color-1) 360deg);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: var(--glow-opacity);
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Subtle glow background effect */
.glow-card::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at var(--glow-x) var(--glow-y),
            rgba(74, 222, 128, 0.15) 0%,
            transparent 50%);
    opacity: var(--glow-opacity);
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.glow-card:hover {
    --glow-opacity: 1;
}

/* Card content layer */
.glow-card>.card-content {
    position: relative;
    z-index: 2;
    background: var(--color-bg-card);
    border-radius: calc(var(--radius-lg) - 1.5px);
    height: 100%;
}

/* Feature Cards - Premium Redesign */
.feature-card {
    background: rgba(17, 20, 24, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(17, 20, 24, 0.6);
    border-color: rgba(74, 222, 128, 0.2);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5),
        0 0 20px -5px rgba(74, 222, 128, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(74, 222, 128, 0.1);
}

.feature-card:hover .feature-icon {
    background: var(--color-accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.3);
}

.feature-icon svg {
    transition: all 0.4s ease;
    stroke: var(--color-accent);
}

.feature-card:hover .feature-icon svg {
    stroke: var(--color-bg-primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: rgba(148, 163, 184, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Advantages Section - Aceternity Inspired Scroll Animation */
.advantages {
    padding: 100px 0 150px;
    perspective: 1200px;
    overflow: hidden;
}

.advantages-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.adv-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(148, 163, 184, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.advantages-scroll-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.advantages-card-wrapper {
    width: 100%;
    max-width: 1000px;
    transform-style: preserve-3d;
    transform: rotateX(15deg) scale(0.95);
    transition: transform 0.1s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 20, 24, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 16px;
    box-shadow:
        0 0 #0000004d,
        0 20px 40px #0000004a,
        0 50px 80px -20px rgba(0, 0, 0, 0.5);
}

.dashboard-mockup {
    max-width: 100% !important;
    border-radius: 20px;
    background: var(--color-bg-primary);
    border: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .advantages {
        padding: 60px 0 100px;
        perspective: 800px;
    }

    .advantages-features {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        gap: 15px;
    }

    .advantages-card-wrapper {
        padding: 8px;
        border-radius: 20px;
    }
}

.mockup-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex: 1;
}

.mockup-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--color-accent);
    background: rgba(74, 222, 128, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mockup-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.mockup-content {
    padding: 24px;
}

.mockup-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .mockup-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mockup-stat-main .stat-value {
        font-size: 1.3rem;
    }

    .mockup-stat-mini .stat-value-mini {
        font-size: 1rem;
    }

    .mockup-content {
        padding: 16px;
    }

    .mockup-chart-container {
        padding: 12px;
        margin-bottom: 16px;
    }

    .transaction {
        padding: 8px;
    }

    .tx-value {
        font-size: 0.8rem;
    }
}

.mockup-stat-main .stat-label,
.mockup-stat-mini .stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.stat-value-group {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.mockup-stat-main .stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
}

.mockup-stat-mini .stat-value-mini {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.mockup-chart-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, #4ade80 0%, #22d3ee 100%);
    border-radius: 3px 3px 0 0;
    opacity: 0.8;
}

.bar-1 {
    height: 40%;
}

.bar-2 {
    height: 60%;
}

.bar-3 {
    height: 45%;
}

.bar-4 {
    height: 85%;
}

.bar-5 {
    height: 55%;
}

.bar-6 {
    height: 70%;
}

.bar-7 {
    height: 95%;
}

.bar-8 {
    height: 65%;
}

.bar-9 {
    height: 50%;
}

.bar-10 {
    height: 75%;
}

.mockup-transactions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tx-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 4px;
}

.transaction {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.tx-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tx-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 800;
}

.tx-icon.pix {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
}

.tx-icon.card {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
}

.tx-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.tx-time {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
}

.tx-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

.tx-status {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
}

.tx-status.success {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
}

.tx-status.pending {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

@keyframes grow {
    from {
        height: 0;
    }
}

/* ========================================
   Integrations Section
   ======================================== */
.integrations {
    background: var(--color-bg-secondary);
}

.integrations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.integration-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 60px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.integration-logo:hover {
    border-color: var(--color-border);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.integration-logo svg {
    width: 100%;
    height: 100%;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(30, 35, 45, 0.9), rgba(20, 25, 32, 0.95));
    border: 1px solid rgba(74, 222, 128, 0.15);
    border-radius: 24px;
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Subtle gradient overlay */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(74, 222, 128, 0.5) 50%,
            transparent 100%);
}

/* Glow effect on hover */
.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74, 222, 128, 0.4);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(74, 222, 128, 0.1);
}

.pricing-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(34, 211, 238, 0.1));
    border-radius: 18px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.25), rgba(34, 211, 238, 0.15));
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.15);
}

.pricing-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
    letter-spacing: 0.02em;
}

.pricing-value {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-value .price {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.pricing-value .period {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 4px;
    display: block;
}

.pricing-features {
    list-style: none;
    text-align: left;
    padding: 0;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-top: var(--spacing-lg);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    background: linear-gradient(180deg, transparent 0%, var(--color-bg-secondary) 100%);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(17, 20, 24, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    background: rgba(17, 20, 24, 0.6);
    border-color: rgba(74, 222, 128, 0.2);
    transform: translateY(-2px);
}

.faq-item.active {
    background: rgba(17, 20, 24, 0.7);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--color-accent);
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(148, 163, 184, 0.6);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 32px 32px;
    color: rgba(148, 163, 184, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px 24px;
        font-size: 1.05rem;
    }

    .faq-answer p {
        padding: 0 24px 24px;
        font-size: 0.95rem;
    }
}

/* CTA Section - Premium Redesign */
.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-primary);
}

.cta-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(17, 20, 24, 0.7) 0%, rgba(11, 12, 16, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

/* Subtle animated glow behind the card */
.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: cta-glow-move 10s ease-in-out infinite alternate;
}

@keyframes cta-glow-move {
    0% {
        transform: translate(-45%, -55%) rotate(0deg);
    }

    100% {
        transform: translate(-55%, -45%) rotate(10deg);
    }
}

.cta-card h2 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: white;
}

.cta-card h2 .highlight {
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.cta-card p {
    color: rgba(148, 163, 184, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .btn {
    min-width: 200px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #0b0c10;
    border: none;
    box-shadow: 0 10px 30px -5px rgba(74, 222, 128, 0.4);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(74, 222, 128, 0.6);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-card {
        padding: 50px 24px;
        border-radius: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-buttons .btn {
        width: 100%;
        min-width: unset;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-bg-secondary);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--color-border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand .logo {
    margin-bottom: var(--spacing-md);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--color-accent);
}

.footer-links h4,
.footer-social h4 {
    color: var(--color-text-primary);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    transition: var(--transition-normal);
}

.social-icon:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: rgba(74, 222, 128, 0.1);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border-subtle);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom .footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom .footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom .footer-links a:hover {
    color: var(--color-accent);
}

/* ========================================
   Floating WhatsApp Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .advantages-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .advantages-image {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-logo-text {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo,
    .footer-contact,
    .social-icons {
        justify-content: center;
    }

    .contact-link {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }

    .section {
        padding: var(--spacing-xl) 0;
    }

    .feature-card {
        padding: var(--spacing-md);
    }

    .pricing-card {
        padding: var(--spacing-lg);
    }
}

/* Pricing Shader Background */
#pricing-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.pricing {
    position: relative;
    background: transparent;
    overflow: hidden;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

/* ========================================
   Integrations Section
   ======================================== */
.integrations {
    overflow: hidden;
    background: #ffffff;
    padding: var(--spacing-xl) 0;
}

.integrations .container {
    padding-bottom: var(--spacing-md);
}

.integrations .section-title,
.integrations .section-subtitle {
    color: #1a1a2e;
}

.integrations .section-title {
    margin-bottom: 0.5rem;
}

.integrations .section-header {
    margin-bottom: var(--spacing-lg);
}

.integrations .section-header p {
    margin-bottom: 0;
    color: #64748b;
}

.integrations .section-title .highlight {
    color: var(--color-accent);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.integration-card {
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent);
}

.integration-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(34, 211, 238, 0.1));
    border-radius: 16px;
    color: var(--color-accent);
}

.integration-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: var(--spacing-sm);
}

.integration-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.integrations-cta {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid #e2e8f0;
}

.integrations-cta p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

.integrations-cta a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.integrations-cta a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .integrations-grid {
        grid-template-columns: 1fr;
    }
}