
    
     
        body {
            margin: 0;
            font-family: Arial, sans-serif;
        }
        
        .main-container {
            width: 100%;           
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            max-width: 1200px;
            width: 100%;
            gap: 40px;
        }
        
        .image-container {
            flex: 0 0 auto;
        }
        
        #dynamic-banner {
            max-width: 100%;
            height: auto;            
            object-fit: contain;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;           
        }
        
        .text-container {
            flex: 1;
            min-width: 300px;
            color: #AA7F2E; /* Cor dourada */
        }
        
        .title {
            font-size: 2.2rem;
            font-weight: bold;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .content-wrapper {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .title {
                font-size: 1.8rem;
                margin-top: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .title {
                font-size: 1.5rem;
            }
        }
    