       /* Reset e corpo */
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            background: radial-gradient(circle, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
            color: #333;
            overflow-x: hidden;
        }

        a { text-decoration: none; }

        /* Container principal */
        .container {
            max-width: 600px;
            width: 95%;
            margin: 40px auto;
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            padding: 30px;
            box-shadow: 
                rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
                rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset,
                rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
                rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
                rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;

            /* Fade-in */
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 1s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Header */
        .header-logo {
            display: block;
            margin: 0 auto 20px auto;
            max-width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        .header-logo:hover { transform: scale(1.05); }

        h1 {
            font-size: 24px;
            color: #007BFF;
            text-align: center;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        h3 {
            font-size: 20px;
            color: #007BFF;
            margin-bottom: 10px;
        }

        .content p {
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .content ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .content ul li { margin-bottom: 10px; }

        /* Botão CTA */
        .cta-button {
            display: inline-block;
            background-color: #007BFF;
            color: #fff;
            padding: 12px 25px;
            font-weight: bold;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,123,255,0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        }
        .cta-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0,123,255,0.6);
            background-color: #0056b3;
        }

        /* Imagem do produto */
        .product-image {
            display: block;
            width: 45%;
            max-width: 438px;
            margin: 20px auto;
            height: auto;
            border-radius: 10px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .product-image:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 25px rgba(0,0,0,0.3);
        }

        /* Textos específicos */
        .highlight-text {
            text-align: center;
            color: #28a745;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .text-center { text-align: center; }
        .text-small {
            font-size: 12px;
            color: #666;
            text-align: center;
            margin-bottom: 20px;
        }

        /* Social Icons */
        .social-icons {
            text-align: center;
            margin: 20px 0;
        }
        .social-icons a {
            display: inline-block;
            margin: 0 10px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        .social-icons a img {
            width: 30px;
            height: 30px;
            opacity: 0.8;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        .social-icons a:hover img {
            transform: scale(1.2) rotate(10deg);
            opacity: 1;
        }

        /* Footer */
        .footer {
            text-align: center;
            font-size: 12px;
            color: #fff;
            padding: 20px 0;
        }
        .footer a { color: #fff; }

        /* Responsividade */
        @media only screen and (max-width: 600px) {
            .container { padding: 15px; }
            .content { font-size: 14px; }
            .cta-button { font-size: 14px; padding: 10px 20px; }
            .product-image { width: 100%; }
        }