 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            background-color: #f1f7fd;
            color: #333;
        }
        
        .header {
            color: white;
            padding: 20px 0;
            text-align: center;
            margin-bottom: 10px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            margin-bottom: 50px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .section-header {
            background-color: #2c5282;
            color: white;
            padding: 20px 30px;
            display: flex;
            align-items: center;
        }
        
        .section-header h2 {
            font-size: 1.8rem;
            margin-right: 15px;
        }
        
        .section-header .badge {
            background-color: #4299e1;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: bold;
        }
        
        .section-content {
            padding: 30px;
        }
        
        /* Grid layout com 4 linhas */
        .grid-container {
            display: grid;
            grid-template-rows: repeat(4, auto);
            gap: 40px;
        }
        
        .grid-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
        }
        
        /* Alternar a ordem das colunas */
        .grid-item:nth-child(even) .grid-content {
            order: 2;
        }
        
        .grid-item:nth-child(even) .grid-image {
            order: 1;
        }
        
        .grid-content {
            padding: 20px;
        }
        
        .grid-image {
            height: 300px;
            background-color: #e2e8f0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .grid-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .grid-image .placeholder {
            color: #718096;
            font-size: 1.2rem;
            text-align: center;
            padding: 20px;
        }
        
        .column-title {
            font-size: 1.5rem;
            color: #1a365d;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #4299e1;
        }
        
        .text-block {
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .services-list {
            list-style-type: none;
        }
        
        .services-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            padding-left: 10px;
            border-left: 3px solid #4299e1;
        }
        
        .services-list i {
            color: #4299e1;
            margin-right: 10px;
            font-size: 1.1rem;
            margin-top: 4px;
        }
        
        .footer-note {
            text-align: center;
            padding: 15px;
            background-color: #e2e8f0;
            font-style: italic;
            color: #4a5568;
        }
        
        @media (max-width: 768px) {
            .grid-item {
                grid-template-columns: 1fr;
            }
            
            .grid-item:nth-child(even) .grid-content,
            .grid-item:nth-child(even) .grid-image {
                order: unset;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .section-header h2 {
                margin-bottom: 10px;
            }
            
            .grid-image {
                height: 200px;
            }
        }