:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --primary-color: #ff2a6d;
    --secondary-color: #05d9e8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 42, 109, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: screen;
}

/* Love Arrows Animation */
.love-arrow {
    position: fixed;
    width: 150px;
    height: 40px;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
}

.love-arrow svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(255, 42, 109, 0.6));
}

.love-arrow::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 42, 109, 0.25) 0%, rgba(255, 42, 109, 0.08) 30%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glow-pulse 2.5s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes fly-arrow {
    0% {
        left: -180px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: calc(100% + 180px);
        opacity: 0;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px;
}

.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 42, 109, 0.5);
    display: flex;
    align-items: center;
}

.logo svg {
    margin-left: 8px;
    margin-top: 0;
}

.cta-small {
    text-decoration: none;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 42, 109, 0.4);
    transition: all 0.3s ease;
}

.cta-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 42, 109, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 5% 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.badge {
    background: rgba(5, 217, 232, 0.1);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(5, 217, 232, 0.3);
    display: inline-block;
    margin-bottom: 20px;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 40px;
    max-width: 450px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 42, 109, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 42, 109, 0.6);
}

#canvas-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

/* Features */
.features {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.features h2,
.objections h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease, opacity 0.6s ease, border-color 0.3s ease;
    position: relative;
    z-index: 2;
    border: 1px solid transparent;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Animation for cards on scroll (mobile) */
@media (max-width: 768px) {
    .card {
        opacity: 0;
        transform: translateY(30px);
    }

    .card.animate-in {
        opacity: 1;
        transform: translateY(-10px);
        border-color: var(--secondary-color);
    }

    .card:nth-child(1).animate-in {
        transition-delay: 0.1s;
    }

    .card:nth-child(2).animate-in {
        transition-delay: 0.2s;
    }

    .card:nth-child(3).animate-in {
        transition-delay: 0.3s;
    }
}

/* Hover effect only on desktop */
@media (min-width: 769px) {
    .card:hover {
        transform: translateY(-10px);
        border-color: var(--secondary-color);
    }
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

/* Objections */
.objections {
    max-width: 800px;
    margin: 50px auto;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Offer Section */
.offer-section {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.offer-card {
    width: 100%;
    max-width: 600px;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: visible;
    background: var(--glass-bg);
}

/* Animated glowing border */
.offer-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg,
            #ff2a6d,
            #05d9e8,
            #ff2a6d,
            #05d9e8);
    background-size: 400% 400%;
    border-radius: 32px;
    z-index: -2;
    animation: glowing-border 3s ease infinite;
    filter: blur(8px);
}

.offer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-color);
    border-radius: 30px;
    z-index: -1;
}

@keyframes glowing-border {
    0% {
        background-position: 0% 50%;
        filter: blur(8px) brightness(1);
    }

    50% {
        background-position: 100% 50%;
        filter: blur(12px) brightness(1.5);
    }

    100% {
        background-position: 0% 50%;
        filter: blur(8px) brightness(1);
    }
}

.offer-header {
    margin-bottom: 30px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 10px;
}

.price .small {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    font-size: 1.1rem;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 42, 109, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 42, 109, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 42, 109, 0);
    }
}

.guarantee {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #888;
}

footer {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    h1 {
        font-size: 2.5rem;
    }

    #canvas-container {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .offer-card {
        padding: 30px;
    }

    .offer-section {
        padding: 100px 20px;
    }

    .objections {
        margin-left: 20px;
        margin-right: 20px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo svg {
        width: 18px;
        height: 18px;
        margin-left: 5px;
    }

    .cta-small {
        padding: 8px 20px;
        font-size: 0.7rem;
    }

    .glass-nav {
        padding: 10px 20px;
    }

    /* Aumentar brilho das flechas no mobile */
    .love-arrow svg {
        filter: drop-shadow(0 0 15px rgba(255, 42, 109, 1));
    }

    .love-arrow::before {
        background: radial-gradient(circle, rgba(255, 42, 109, 0.5) 0%, rgba(255, 42, 109, 0.2) 30%, transparent 70%);
    }
}