/* Base Variables & Reset */
:root {
    --bg-light: #fdfdfd;
    --bg-surface: #ffffff;
    --border-soft: rgba(0, 0, 0, 0.08);
    --text-main: #0a0f1c;
    --text-muted: #5e6c84;

    --purple-main: #9d50bb;
    --purple-glow: rgba(157, 80, 187, 0.2);

    --blue-main: #2196f3;
    --pink-main: #f06292;
    --orange-main: #ff9800;
    --teal-main: #00bcd4;

    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.6);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    color: #0a0f1c;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography & Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--blue-main), var(--purple-main), var(--pink-main));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.text-purple {
    color: var(--purple-main);
}

.text-blue {
    color: var(--blue-main);
}

.text-pink {
    color: var(--pink-main);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, rgba(157, 80, 187, 0.15), rgba(157, 80, 187, 0.05));
    border: 1px solid rgba(157, 80, 187, 0.2);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(33, 150, 243, 0.05));
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.bg-gradient-pink {
    background: linear-gradient(135deg, rgba(240, 98, 146, 0.15), rgba(240, 98, 146, 0.05));
    border: 1px solid rgba(240, 98, 146, 0.2);
}

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

.container-sm {
    max-width: 800px;
}

/* Background Blobs (Colorido) */
.bg-blob {
    display: none;
    position: absolute;
    width: 500px;
    height: 500px;
}

.blob-1 {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--purple-main) 0%, rgba(255, 255, 255, 0) 70%);
}

.blob-2 {
    bottom: 10%;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blue-main) 0%, rgba(255, 255, 255, 0) 70%);
}

.blob-3 {
    top: 40%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--pink-main) 0%, rgba(255, 255, 255, 0) 70%);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    box-shadow: 0 24px 48px -12px rgba(157, 80, 187, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-main), var(--blue-main));
    color: white;
    box-shadow: 0 8px 24px var(--purple-glow);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(33, 150, 243, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 1px solid var(--border-soft);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: var(--blue-main);
    color: var(--blue-main);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.hero-cta .btn-secondary {
    font-size: 0.95rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 100;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 75px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-soft);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
}

.logo i {
    background: linear-gradient(135deg, var(--purple-main), var(--blue-main));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

.mobile-divider {
    border: 0;
    height: 1px;
    background: var(--border-soft);
    margin: 0.5rem 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
}

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

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 24px;
    color: var(--purple-main);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-trust {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-trust span {
    color: var(--purple-main);
    font-weight: 700;
}

/* Dashboard Mockup Component */
/* Hero Image Visuals */
.hero-image-wrapper {
    position: relative;
    max-width: 580px;
    margin-left: auto;
}

.real-person-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 50px;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.15);
    border: 8px solid white;
    position: relative;
    z-index: 2;
}

.visual-deco {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple-main), var(--blue-main));
    border-radius: 40px;
    opacity: 0.1;
    z-index: 1;
}

.mac-buttons {
    display: flex;
    gap: 0.5rem;
}

.mac-buttons span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mac-buttons .close {
    background: #ff5f56;
}

.mac-buttons .minimize {
    background: #ffbd2e;
}

.mac-buttons .expand {
    background: #27c93f;
}

.mockup-body {
    padding: 2.5rem;
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    padding: 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card i {
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.stat-card h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.floating-element {
    display: none;
}

.float-1 {
    top: -10px;
    right: -30px;
    color: #16a34a;
    background: #f0fdf4;
}

.float-2 {
    bottom: 30px;
    left: -50px;
    color: var(--blue-main);
    background: #eff6ff;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    background: white;
}

.feature-img-container {
    width: 100%;
    height: 180px;
    margin-bottom: 2rem;
    border-radius: 18px;
    overflow: hidden;
}

.feature-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-img-container img {
    transform: scale(1.05);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    z-index: 1;
}

.timeline-content {
    padding: 2.5rem;
    border: 1px solid var(--border-soft);
    background: white;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 3rem 2.5rem;
    background: white;
    border: 1px solid var(--border-soft);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(124, 58, 237, 0.05);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    padding: 3.5rem 2.5rem;
    background: white;
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--purple-main);
    box-shadow: 0 30px 60px -15px rgba(124, 58, 237, 0.15);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple-main);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-soft);
}

.pricing-header h3 {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.pricing-header .price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.pricing-header .price span {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-main);
    font-weight: 500;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

/* Stats section */
.stats-section .container {
    max-width: 1100px;
}

.stats-grid {
    padding: 4rem;
    display: flex;
    justify-content: space-around;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

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

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--purple-main);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    background: var(--border-soft);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
}

.cta-box {
    padding: 5rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    border: none;
}

.cta-box h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.cta-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    background: #0f172a;
    /* Dark Blue / Navy */
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.social-links a:hover {
    color: white;
    background: var(--purple-main);
    border-color: var(--purple-main);
}

.footer-links h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {

    .features-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }

    .hero-visual {
        margin-top: 4rem;
    }

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

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

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

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-brand .logo div {
        padding: 15px 25px !important;
    }

    .footer-brand .logo img {
        height: 50px !important;
    }

    .footer-brand p {
        margin: 1.5rem auto 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-main);
    font-weight: 500;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Stats Section */
.stats-section {
    padding-top: 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    padding: 4rem 2rem;
    align-items: center;
}

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

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--purple-main);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: var(--border-light);
}

/* CTA Section */
.cta-box {
    text-align: center;
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(50px);
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-actions {
    position: relative;
    z-index: 1;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-note i {
    color: #27c93f;
}