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

:root {
    /* Induxis: azul profundo + aqua vibrante + verde secundário */
    --primary: #1B2A4E;           /* Azul profundo – fundo principal */
    --primary-light: #00D9FF;     /* Aqua vibrante – destaques e ícones */
    --accent: #4ccc81;            /* Verde vibrante – bordas e elementos secundários */
    --accent-dark: #00CC6A;       /* Verde escuro – hover e contraste */
    --dark: #0F1829;              /* Azul muito escuro – footer e áreas de contraste */
    --gray: #37474F;              /* Cinza escuro – textos secundários */
    --light-gray: #ECEFF1;        /* Cinza claro – fundos de cards e seções */
    --white: #FFFFFF;             /* Branco – fundo e textos principais */
    --success: #00FF88;           /* Verde vibrante – status positivos */
    --warning: #FF9800;           /* Laranja alerta – status de atenção */
    --danger: #F44336;            /* Vermelho crítico – falhas graves */
    --text-light: #B8C5D6;        /* Cinza claro – textos sobre fundo escuro */
}





        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--gray);
            overflow-x: hidden;
        }

        /* Header fixo */
        header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: var(--white);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo span {
            color: var(--accent);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

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

        nav a:hover {
            color: var(--accent);
        }

        .cta-button {
            background: var(--accent);
            color: var(--dark);
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(249, 168, 37, 0.4);
        }

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

        .nav-platform-link {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-platform-link:hover {
            color: var(--accent);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: var(--white);
            padding: 150px 2rem 100px;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: 100px;
            opacity: 0.3;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero h1 span {
            color: var(--accent);
            display: block;
            font-size: 2.5rem;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--dark);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(249, 168, 37, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            border: 2px solid var(--white);
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
        }

        .hero-image {
            position: relative;
            animation: fadeIn 1s ease-out 0.5s backwards;
        }

        .dashboard-preview {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            border: 2px solid rgba(255,255,255,0.2);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .preview-header {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .preview-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--accent);
        }

        .preview-content {
            background: rgba(255,255,255,0.95);
            border-radius: 10px;
            padding: 1.5rem;
            color: var(--gray);
        }

        .status-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 1rem;
            background: var(--light-gray);
            border-radius: 10px;
        }

        .status-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .status-normal { background: var(--success); color: white; }
        .status-warning { background: var(--warning); color: white; }
        .status-critical { background: var(--danger); color: white; }

        /* Problemas Section */
        .problems {
            padding: 100px 2rem;
            background: var(--light-gray);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--gray);
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .problem-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .problem-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .problem-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .problem-card h3 {
            color: var(--dark);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .problem-card p {
            color: var(--gray);
            line-height: 1.8;
        }

        /* Solução Section */
/* Solução Section */
.solution {
    padding: 100px 2rem;
    background: var(--white, #ffffff);
    box-sizing: border-box;
}

.solution .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--gray);
}

.solution-content {
    display: block; /* Remove o grid, pois só tem .solution-features */
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Colunas adaptáveis */
    gap: 2rem;
}

/* Força uma coluna em telas pequenas */
@media (max-width: 480px) {
    .solution-features {
        grid-template-columns: 1fr;
    }
}

.feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray, #ECEFF1);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}

.feature:hover {
    background: var(--primary, #2E7D32); /* Verde escuro do seu tema */
    color: var(--white, #FFFFFF);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: inherit;
}

.feature p {
    color: inherit;
    line-height: 1.5;
}

.feature:hover h3,
.feature:hover p {
    color: var(--white, #FFFFFF);
}


/* Benefícios Section */
        .benefits {
            padding: 100px 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: var(--white);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .benefit-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 2px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }

        .benefit-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-10px);
        }

        .benefit-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .benefit-label {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .benefit-description {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Como Funciona */
        .how-it-works {
            padding: 100px 2rem;
            background: var(--white);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            position: relative;
        }

        .step {
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
            box-shadow: 0 5px 20px rgba(46, 125, 50, 0.3);
        }

        .step h3 {
            color: var(--dark);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .step p {
            color: var(--gray);
        }

        /* Preços */
        .pricing {
            padding: 100px 2rem;
            background: var(--light-gray);
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .pricing-card {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: var(--white);
            transform: scale(1.05);
        }

        .pricing-card.featured .plan-name,
        .pricing-card.featured .plan-price,
        .pricing-card.featured .plan-features li {
            color: var(--white);
        }

        .badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--accent);
            color: var(--dark);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .plan-name {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .plan-price {
            font-size: 3rem;
            color: var(--primary);
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .plan-price span {
            font-size: 1.2rem;
            color: var(--gray);
        }

        .plan-price2 {
            font-size: 3rem;
            color: #ffffff;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }


        .plan-price2 span {
            font-size: 1.2rem;
            color: #ffffff;
        }

        .plan-period {
            color: var(--gray);
            margin-bottom: 2rem;
        }

        .plan-period2 {
            color: #ffffff;
            margin-bottom: 2rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .plan-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--light-gray);
            color: var(--gray);
        }

        .plan-features li:before {
            content: "✓";
            color: var(--success);
            font-weight: bold;
            margin-right: 0.5rem;
        }

        /* Depoimentos */
        .testimonials {
            padding: 100px 2rem;
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .testimonial-card {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 15px;
            position: relative;
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
            top: 1rem;
            left: 1rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

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

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.3rem;
        }

        .author-info h4 {
            color: var(--dark);
            margin-bottom: 0.2rem;
        }

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

        /* CTA Final */
        .final-cta {
            padding: 100px 2rem;
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: var(--white);
            text-align: center;
        }

        .final-cta h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .final-cta p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.95;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-about h3 {
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .footer-links h4 {
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
            display: block;
            margin-bottom: 0.5rem;
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
        }

        /* Animações */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
            }



            nav ul {
                display: none;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }