:root {
    --bg-color: #030014;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --primary-gradient: linear-gradient(135deg, #FF0080 0%, #7928CA 100%);
    --accent-color: #7928CA;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: 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-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Background Effects */
.bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #7928CA 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #FF0080 0%, transparent 70%);
    bottom: 0;
    right: -100px;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* Typography & Utilities */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(to right, #FF0080, #7928CA, #00DFD8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Helper Buttons */
.btn-primary {
    background: var(--text-primary);
    color: var(--bg-color);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-primary.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: var(--primary-gradient);
    color: white;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.glass-card:hover {
    border-color: var(--glass-highlight);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    background: rgba(3, 0, 20, 0.6);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    /* Se a logo for muito escura, o filtro abaixo ajuda a deixá-la branca. 
       Remova a linha 'filter' se sua logo já for clara. */
    /* filter: brightness(0) invert(1); */
    display: block;
}

.nav-logo[src=""] {
    display: none;
}

.dot {
    color: #FF0080;
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: #00DFD8;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    margin-right: -10px;
}

.proof-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 10px;
}

/* Hero Visual Animation */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-card {
    width: 380px;
    height: 240px;
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.circle.red {
    background: #FF5F56;
}

.circle.yellow {
    background: #FFBD2E;
}

.circle.green {
    background: #27C93F;
}

.chart-area {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 80px;
    margin-bottom: 25px;
}

.bar {
    width: 30px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    border-radius: 4px;
}

.bar-1 {
    height: 40%;
    animation: growBar 2s infinite alternate;
}

.bar-2 {
    height: 70%;
    animation: growBar 2.5s infinite alternate 0.5s;
}

.bar-3 {
    height: 100%;
    background: var(--primary-gradient);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
    animation: growBar 3s infinite alternate 1s;
}

@keyframes growBar {
    from {
        transform: scaleY(0.9);
    }

    to {
        transform: scaleY(1.05);
    }
}

.stat-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--glass-border);
    padding-top: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.stat-item .value {
    font-size: 1.2rem;
    font-weight: 700;
}

.glass-badge {
    position: absolute;
    padding: 0.5rem 1rem;
    background: rgba(20, 20, 40, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.badge-1 {
    top: -20px;
    right: -30px;
    animation: float 5s ease-in-out infinite reverse;
}

.badge-2 {
    bottom: -20px;
    left: -30px;
    animation: float 7s ease-in-out infinite 1s;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: left;
    padding: 2.5rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.icon-box {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0 120px;
}

.container-cta {
    display: flex;
    justify-content: center;
}

.cta-card {
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-card p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.pulsate {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(121, 40, 202, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(121, 40, 202, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(121, 40, 202, 0);
    }
}

.cta-small {
    font-size: 0.8rem !important;
    margin-top: 1.5rem;
    opacity: 0.6;
    margin-bottom: 0 !important;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.2);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 2rem;
        height: 300px;
    }

    .main-card {
        width: 100%;
        max-width: 320px;
    }

    .badge-1 {
        right: 0;
    }

    .badge-2 {
        left: 0;
    }

    .nav-container .btn-primary {
        display: none;
        /* Hide top header button on mobile, focus on hero button */
    }
}

S

/* Testimonials Section */
.testimonials-section {
    padding: 50px 0 100px;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.client-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    font-weight: 400;
}

.testimonial-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testimonial-text {
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.stars {
    font-size: 1rem;
    opacity: 0.9;
}