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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #FF6B00;
            color: white;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .main-container {
            text-align: center;
            max-width: 600px;
            width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 2.5rem;
            color: white;
        }

        .logo-image {
            width: 100px;
            height: 100px;
            object-fit: contain;
            margin-right: 1rem;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .logo {
                font-size: 2rem;
            }
            
            .logo-image {
                width: 80px;
                height: 80px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 1rem;
            }
            
            .logo {
                font-size: 1.8rem;
            }
            
            .logo-image {
                width: 70px;
                height: 70px;
            }
        }
