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

:root {
    --primary: #1ed760;
    --primary-glow: rgba(30, 215, 96, 0.15);
    --secondary: #2563eb;
    --bg-darker: #050505;
    --bg-main: #0a0a0a;
    --card-bg: #121212;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
    --gradient: linear-gradient(135deg, #1ed760 0%, #1db954 100%);
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

/* Grid Background Global - Presença Máxima */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(30, 215, 96, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 215, 96, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
}

/* Efeito Glow Elite (.exe style) */
.elite-glow-top-right {
    position: fixed;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 215, 96, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

.elite-glow-bottom-left {
    position: fixed;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 215, 96, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

/* Efeito de Energia Horizontal (Ripple) */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.04) 50%,
            transparent 100%);
    z-index: -1;
    pointer-events: none;
    animation: energyRipple 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes energyRipple {
    0% {
        left: -100%;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        left: 200%;
        opacity: 0;
    }
}

html {
    background-color: #000;
}

body {
    background-color: transparent;
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Background Gradients */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    filter: blur(120px);
    opacity: 0.25;
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite alternate;
}

.blob-1 {
    top: -300px;
    right: -100px;
}

.blob-2 {
    bottom: -300px;
    left: -100px;
    animation-delay: -2s;
}

.blob-3 {
    top: 40%;
    left: -200px;
    width: 600px;
    height: 600px;
    opacity: 0.2;
    animation-delay: -4s;
}

.blob-4 {
    bottom: 20%;
    right: -200px;
    width: 500px;
    height: 500px;
    opacity: 0.15;
    animation-delay: -6s;
}

@keyframes glowPulse {
    from {
        transform: scale(1);
        opacity: 0.15;
    }

    to {
        transform: scale(1.3);
        opacity: 0.35;
    }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-wrapper img {
    height: 50px;
}

.logo-wrapper span {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

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

.btn-download-small {
    background: var(--gradient);
    color: #000 !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Hero Section */
.hero {
    padding: 200px 10% 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 24px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -3px;
    background: linear-gradient(to bottom, #fff 50%, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 span {
    color: var(--primary);
    -webkit-text-fill-color: initial;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 40px;
}

.btn-hero {
    background: var(--gradient);
    color: #000 !important;
    padding: 20px 48px;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: rotate(35deg);
    transition: none;
    animation: shineEffect 3s infinite;
}

@keyframes shineEffect {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.btn-hero:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Features */
.features {
    padding: 100px 10%;
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
}

.section-head h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.grid-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 32px;
    transition: 0.3s;
    position: relative;
    width: 320px;
    flex-grow: 1;
    max-width: 400px;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            rgba(30, 215, 96, 0.3),
            var(--primary),
            rgba(30, 215, 96, 0.3),
            transparent 30%);
    animation: borderRotate 4s linear infinite;
    z-index: -2;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--card-bg);
    border-radius: 30px;
    z-index: -1;
}

@keyframes borderRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing */
.pricing {
    padding: 100px 10%;
    background: #000;
    position: relative;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 60px 40px;
    border-radius: 40px;
    width: 380px;
    text-align: center;
    transition: 0.4s;
    position: relative;
}

.price-card.popular {
    border-color: transparent;
    scale: 1.08;
    background: var(--card-bg);
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 0 40px rgba(30, 215, 96, 0.15);
}

.price-card.popular::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            rgba(30, 215, 96, 0.4),
            var(--primary),
            rgba(30, 215, 96, 0.4),
            transparent 30%);
    animation: borderRotate 4s linear infinite;
    z-index: -2;
}

.price-card.popular::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(180deg, rgba(30, 215, 96, 0.05) 0%, #111 100%);
    border-radius: 38px;
    z-index: -1;
}

.price-card h4 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    white-space: nowrap;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin: 40px 0;
}

.benefits-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.benefits-list li i {
    color: var(--primary);
}

.btn-pricing {
    width: 100%;
    padding: 18px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Efeito de brilho interno passando */
.btn-pricing::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 100%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: rotate(35deg);
    transition: 0.8s;
}

.btn-pricing:hover::after {
    left: 150%;
}

.btn-pricing:hover {
    scale: 1.05;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.price-card.popular .btn-pricing {
    background: var(--gradient);
    color: #000 !important;
    border: none;
    animation: pulseGlow 3s infinite;
    box-shadow: 0 0 20px rgba(30, 215, 96, 0.2);
}

.price-card.popular .btn-pricing:hover {
    scale: 1.07;
    box-shadow: 0 15px 35px rgba(30, 215, 96, 0.4);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 215, 96, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(30, 215, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(30, 215, 96, 0);
    }
}

/* Footer */
footer {
    padding: 80px 10%;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-logo .logo-wrapper img {
    height: 60px;
}

.footer-logo .logo-wrapper span {
    font-size: 1.8rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    opacity: 1;
}

.copyright {
    color: #444;
    font-size: 0.85rem;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 1s linear infinite;
}

/* Modais Premium */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #111;
    width: 90%;
    max-width: 450px;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(30px) scale(0.95);
    transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.success-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

/* Trial Section Premium */
.trial-section {
    padding: 100px 10%;
    background: #000;
    position: relative;
    overflow: hidden;
}

.trial-card {
    background: #0a0a0a !important;
    backdrop-filter: blur(20px);
    border-radius: 40px !important;
    padding: 60px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 30px !important;
    z-index: 10;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    max-width: 650px;
    margin: 40px auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.trial-content {
    max-width: 100% !important;
    text-align: center !important;
}

.trial-content h2 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 20px 0 !important;
}

.trial-form {
    display: flex !important;
    gap: 15px !important;
    margin-top: 30px !important;
    justify-content: center !important;
}

.trial-form input {
    max-width: 400px !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 18px 25px !important;
    border-radius: 100px !important;
    color: #fff !important;
    font-size: 1rem !important;
}

.btn-trial {
    background: #1ed760 !important;
    color: #000 !important;
    padding: 18px 35px !important;
    border-radius: 100px !important;
    border: none !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    line-height: 1 !important;
}

.trial-result {
    margin-top: 30px;
    background: rgba(30, 215, 96, 0.1);
    padding: 24px;
    border-radius: 20px;
    border: 1px dashed #1ed760;
}

.trial-result code {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
}

/* Toast System Premium Estilo Software */
#toast-container {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.premium-toast {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    pointer-events: auto;
}

.premium-toast i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.premium-toast.error i {
    color: #ff4757 !important;
}

.premium-toast.success i {
    color: var(--primary) !important;
}

.premium-toast span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: -0.2px;
}

@keyframes toastIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.premium-toast.fade-out {
    animation: toastOut 0.5s forwards;
}

@keyframes toastOut {
    to {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px 5%;
        gap: 0;
    }

    nav .logo-wrapper img {
        height: 30px;
    }

    nav .logo-wrapper span {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    .btn-download-small {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
        letter-spacing: -1.5px;
    }

    .hero {
        padding: 120px 5% 60px;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .price-card {
        width: 100%;
        max-width: 400px;
    }

    .price {
        font-size: 2.8rem;
    }

    .trial-card {
        padding: 40px 25px !important;
        margin: 20px 0;
        border-radius: 30px !important;
    }

    .trial-content h2 {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 20px !important;
    }

    .trial-content p {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }

    .trial-form {
        flex-direction: column !important;
        width: 100%;
        gap: 12px !important;
    }

    .trial-form input {
        max-width: 100% !important;
    }

    .premium-toast {
        min-width: 320px;
        width: 90vw;
    }
}

/* Floating Support Button */
.float-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient);
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(30, 215, 96, 0.4);
    animation: pulseGlow 3s infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-support i {
    width: 22px;
    height: 22px;
}

.float-support:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 215, 96, 0.6);
    color: #000;
}

@media (max-width: 768px) {
    .float-support {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .float-support span {
        display: none;
        /* Em telas muito pequenas fica so o icone se precisar, ou mantem texto curto */
    }

    .float-support {
        padding: 15px;
        width: 55px;
        height: 55px;
        justify-content: center;
    }
}