/* (mantenha todos os estilos anteriores - são os mesmos) */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #ffffff;
            color: #0A1F44;
            overflow-x: hidden;
        }

        :root {
            --primary-dark: #0A1F44;
            --primary-green: #1DB954;
            --gray-light: #F8F9FA;
        }

        /* Navbar */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            padding: 0.8rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-dark);
        }

        .navbar-brand i {
            color: var(--primary-green);
            font-size: 2rem;
            margin-right: 8px;
        }

        .nav-link {
            font-weight: 500;
            color: var(--primary-dark);
            margin: 0 8px;
            transition: 0.2s;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary-green);
        }

        /* Carrossel */
        .carousel-item {
            height: 90vh;
            min-height: 550px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .carousel-item::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10,31,68,0.8) 0%, rgba(29,185,84,0.7) 100%);
            z-index: 1;
        }

        .carousel-caption {
            z-index: 2;
            bottom: 30%;
            text-align: center;
            transform: translateY(30%);
        }

        .carousel-caption h1 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 15px rgba(0,0,0,0.3);
            animation: fadeInUp 0.8s ease;
        }

        .carousel-caption p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 1rem auto;
        }

        .btn-carousel {
            background-color: var(--primary-green);
            border: none;
            padding: 12px 34px;
            font-weight: 600;
            border-radius: 50px;
            color: #fff;
            transition: 0.3s;
            margin-top: 15px;
            display: inline-block;
            text-decoration: none;
        }

        .btn-carousel:hover {
            background-color: #17a74b;
            transform: translateY(-3px);
            color: white;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Seções */
        .section-padding {
            padding: 90px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }

        .section-subtitle {
            color: #5a6e8a;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 50px auto;
        }

        .bg-light-custom {
            background-color: var(--gray-light);
        }

        /* Cards dos produtos */
        .product-card {
            border: none;
            border-radius: 24px;
            padding: 2rem 1.5rem;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            height: 100%;
            text-align: center;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.1);
        }

        .icon-circle {
            width: 80px;
            height: 80px;
            background: rgba(29, 185, 84, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem auto;
        }

        .icon-circle i {
            font-size: 2.5rem;
            color: var(--primary-green);
        }

        .product-card h3 {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .product-card p {
            color: #4a5568;
            line-height: 1.6;
        }

        .btn-outline-product {
            border: 2px solid var(--primary-green);
            background: transparent;
            color: var(--primary-green);
            border-radius: 40px;
            padding: 8px 24px;
            font-weight: 600;
            transition: 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-outline-product:hover {
            background: var(--primary-green);
            color: white;
        }

        /* Diferenciais */
        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: #e9f7ef;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 1.4rem;
        }

        /* Formulário */
        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 30px;
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
        }

        .form-control {
            border-radius: 16px;
            padding: 12px 18px;
            border: 1px solid #dee2e6;
        }

        .form-control:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.2rem rgba(29, 185, 84, 0.25);
        }

        .btn-submit {
            background: var(--primary-green);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            width: 100%;
            transition: 0.2s;
        }

        .btn-submit:hover {
            background: #0f9e48;
            transform: translateY(-2px);
        }

        /* Toast / Alerta customizado */
        .alert-message {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 9999;
            max-width: 90%;
            width: auto;
            min-width: 300px;
            animation: slideDown 0.5s ease forwards;
        }

        @keyframes slideDown {
            from {
                top: -100px;
                opacity: 0;
            }
            to {
                top: 20px;
                opacity: 1;
            }
        }

        /* Footer */
        .footer {
            background: var(--primary-dark);
            color: #eef2ff;
            padding: 40px 0 25px;
        }

        .footer a {
            color: #d1d9ff;
            text-decoration: none;
        }

        .footer a:hover {
            color: var(--primary-green);
        }

        @media (max-width: 992px) {
            .carousel-item { height: 70vh; }
            .carousel-caption h1 { font-size: 2.2rem; }
            .section-padding { padding: 60px 0; }
        }