     :root {
            /* Definição de cores */
            --primary: #0056b3; 
            --light: #f8f9fa;   
            --text-color: #333;
        }

        .info {
            padding: 80px 0;
            background-color: white;
        }

        .info-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .info-box {
            background: var(--light);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 100%; 
        }

        .info-box h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 10px;
        }

        .info-box ul {
            list-style-type: none;
            padding: 0;
        }

        .info-box li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start; 
            font-size: 1rem;
            color: var(--text-color);
        }

        .info-box i {
            margin-right: 15px;
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 4px; 
        }
        
        .map-container {
            width: 100%;
            height: 250px;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 15px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h1 {
            font-size: 2.5rem;
            color: var(--primary);
        }